Urgent-MAiling

Hi All,
      I am still not through with the gif image mailing.
I have Uploaded GIF image from C DRIVE in binary format can any one tell how to send this in a mail using the function Module SO_NEW_DOCUMENT_ATT_SEND_API1.
I am sing it as under.
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data                    = w_doc_data
     put_in_outbox                    = 'X'
     commit_work                      = 'X'
   IMPORTING
      sent_to_all                      = v_sent
    NEW_OBJECT_ID                    =
    TABLES
      packing_list                     = t_packing_list
    OBJECT_HEADER                    =
    CONTENTS_BIN                     =
      contents_txt                     = it_message
    CONTENTS_HEX                     =
    OBJECT_PARA                      =
    OBJECT_PARB                      =
      receivers                        = t_receivers
   EXCEPTIONS
     too_many_receivers               = 1
     document_not_sent                = 2
     document_type_not_exist          = 3
     operation_no_authorization       = 4
     parameter_error                  = 5
     x_error                          = 6
     enqueue_error                    = 7
     OTHERS                           = 8
it_message context the text for a HTML AND AN XLS FILE >NOW I WANT TO SEND THE GIF image through the same mail.Since the GIF image is in Binary format its not being append to it_message .I dont know OOPS .

Does CDOSYS have the SMTP address?
Once you have the SMTP address you could write a Java class to send mail.
Take a look at this example http://java.sun.com/products/javamail/FAQ.html#examples
Also , try to write the code for JavaMail in a Java class and not in the JSP page , JSP pages are best suitable for displaying the View and not to perform business and application logic like JavaMail.

Similar Messages

  • IPhone - Discerning High Importance/Urgent Mail Messages

    Help! I have an iPhone 3G S. I can see my work email (MS Hosted Exhcange) on my unit, but I can't figure out how to discern when I get a High Importance/Urgent message. Like on Outlook it gives you an exclamation point. Any suggestions?
    Thanks much.

    The iPhone mail app treats all emails equally. The importance rating thing is an Outlook thing.

  • Urgent: Mail merge type report

    Hi All,
    Reports version 2.5 on NT
    I'm not a reports expert so pardon me if it is a simple question.
    I'm trying to create a salary certificate for all the employees. This will be a mail merge type of report, where there will be static text embedded with dynamic data from the database.
    Now my problem is that I want to print the static text with normal font and DB text in bold style.
    I can't use fields for DB columns as then my formatting will go for a toss because the data inside the fields is of variable length.
    Please advise on what to do? Any workarounds?
    Regards
    Naveen

    You still need to use a Field object that sources on the corresponding DB column. Set font style of the Field object to "Bold". Set its "Horizontal Elasticity" property to "Expand".
    Regards
    Sripathy

  • URGENT: Mail Issues

    All,
    I have the following issues in the Coldfusion Server. In the
    mail log I'm seeing the following issues logged. Where all the
    emails are valid emails. I just made them xxxx, yyyy inorder to
    protect their identity.
    Invalid Addresses; nested exception is: class
    javax.mail.SendFailedException: 554 <[email protected]>:
    Recipient address rejected: Relay access denied
    Mar 29, 2007   9:36 AM   Error   0  
    Invalid Addresses; nested exception is: class
    javax.mail.SendFailedException: 554 <[email protected]>:
    Recipient address rejected: Relay access denied
    Mar 28, 2007   8:18 PM   Error   0  
    Invalid Addresses; nested exception is: class
    javax.mail.SendFailedException: 554 <[email protected]>:
    Recipient address rejected: Relay access denied
    Mar 28, 2007   8:02 PM   Error   0  
    Invalid Addresses; nested exception is: class
    javax.mail.SendFailedException: 554 <[email protected]>:
    Recipient address rejected: Relay access denied
    And many more such entries. Any idea what is going
    wrong???

    Relay Access Denied is a security restriction that is set by
    the SMTP server. On the SMTP server you restrict relaying by IP,
    domain, subnet etc... Try and contact your SMTP Server
    Administrator to ensure that 'relaying' is allowed for the machine
    that CF is on or try a different mail server.

  • Urgent: Mailing text files

    I have currently written a stored procedure which calculates
    bills and saves them in a separate text file for each
    user/customer. I want to automatically mail them to each user.
    Their email address will be stored in the database. Can any one
    help me in generating automatic mails thru stored procedures....
    null

    Unfortunately .. there is no direct way through PL/SQL
    One work around if you have a Unix server.
    I guess you have used PL/SQL File I/O UTL_FILE package to create
    the file.
    You will need to script something on the server..
    Eg. First line of every file .. send in the email id
    [email protected]
    line1
    line2..
    Write a script which reads the first line and gets the email
    and then using unix mail command it will work.
    Adil Sameer (guest) wrote:
    : I have currently written a stored procedure which calculates
    : bills and saves them in a separate text file for each
    : user/customer. I want to automatically mail them to each user.
    : Their email address will be stored in the database. Can any
    one
    : help me in generating automatic mails thru stored
    procedures....
    null

  • Urgent - Mail from Oracle

    Dear friends,
    I want 2 send mail from Oracle PL/SQL . I have used the
    following code to send mail.
    create or replace PROCEDURE send_mail_1 (sender IN VARCHAR2,
    recipient IN VARCHAR2,
    message IN VARCHAR2)
    IS
    mailhost VARCHAR2(30) := 'mailhost.mydomain.com';
    smtp_error EXCEPTION;
    mail_conn utl_tcp.connection;
    PROCEDURE smtp_command(command IN VARCHAR2,
    ok IN VARCHAR2 DEFAULT '250')
    IS
    response varchar2(3);
    x number;
    BEGIN
    x:= utl_tcp.write_line(mail_conn, command);
    response := substr(utl_tcp.get_line(mail_conn), 1, 3);
    IF (response <> ok) THEN
    RAISE smtp_error;
    END IF;
    END;
    BEGIN
    mail_conn := utl_tcp.open_connection(mailhost, 25);
    smtp_command('HELO ' || mailhost);
    smtp_command('MAIL FROM: ' || sender);
    smtp_command('RCPT TO: ' || recipient);
    smtp_command('DATA', '354');
    smtp_command(message);
    smtp_command('QUIT', '221');
    utl_tcp.close_connection(mail_conn);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line(SQLERRM);
    END;
    I am able to successfuly create the procedure. But while
    executing the procedure I got the following error "ORA-29540:
    class oracle/plsql/net/TCPConnection does not exist".
    I have used the following format while I tried executing the
    procedure
    execute send_mail_1
    ('[email protected]','[email protected]','Test')
    Are the above parameters are correct?. Further should I need to
    change 'mailhost.mydomain.com' string value?- If yes what value
    should be given there?
    mailhost VARCHAR2(30) := 'mailhost.mydomain.com';
    Kindly help me in this regards.
    Thanks in advance
    Narayanan

    Something like:
    Create or Replace  Procedure Send_Reminder IS
      CURSOR cur_reminders_needed IS
      SELECT *
      FROM mytable
      where trunc(reminder_date) = trunc(sysdate)
      FOR UPDATE OF reminder_date;
    BEGIN
      For rec in cur_reminders_needed LOOP
        my_mail_pkg.send_emal(rec.stuff_from_my_table);
        UPDATE mytable set reminder_date = reminder_date+rec.reminder_increment
        WHERE CURRENT OF cur_reminders_needed;
      END LOOP;
      COMMIT;
    END;Then use dbms_job.submit to create a job that runs send_reminders every day.
    Then take a nap, Oracle will do everything else.

  • URGENT MAIL HELP NEEDED!

    Leopard has seriously screwed with Mail.
    Somehow while trying to make my .mac emails only appear in Mail and not on the server my .mac account has become Read Only. I can't move mails, delete mails, mark them as read. I can send and receive but nothing else. Mail worked exactly as I wanted it for many years and now it's completely shot.
    So, 2 things to resolve....
    Firstly, I need to make my .mac account not read only. The error box says the following but I can't find what it's on about
    The account path /Users/Ant/Library/Mail/Mac-ant.carr is not writable. Please change the Account Directory field in the Account Options tab to a writable directory
    Secondly, I just want my sent emails to live in the sent email box and not on the server!
    Hope someone can help!

    If this helps anyone.
    I installed Thunderbird and my .mac account works fine.
    So,
    I backed up and copied my pref file. App Zapped Mail and re-installed it. Without putting my pref file back in, the .mac account was still read only.
    Anyone...?

  • URGENT: Mail Tab disappeared

    Please help here. Suddenly when I login in my webmail account there is not mail tab. I can see calendar, address book and options but no mail. Also when i open outlook it says it can not find the mail server.
    We have a cluster with 2 nodes. In the web monitor of the cluster everything seems to be online. I tried to switch primary both resource groups and nothing happened. Although they appear to be online. Also We restarted both servers again with no luck .Everything is online but the email is not working.
    Please help us here cause we are lost.
    Thanks,
    Savvas

    ajkboc wrote:
    Please help here. Suddenly when I login in my webmail account there is not mail tab. I can see calendar, address book and options but no mail. Also when i open outlook it says it can not find the mail server.In addition to what has already been posted, the most obvious thing to confirm is that Messaging Server is actually up and running. If Outlook says is can not find the mail server, this would imply that the imap/smtp/pop services may be down.
    Are you able to run the following command and get output:
    telnet <mailhost> 143
    e.g.
    telnet myserver.sun.com 143
    Trying 1.2.3.4...
    Connected to myserver.sun.com.
    Escape character is '^]'.
    * OK [CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL+ NAMESPACE UIDPLUS CHILDREN BINARY
    UNSELECT SORT LANGUAGE STARTTLS XSENDER X-NETSCAPE XSERVERINFO X-SUN-SORT X-SUN-IMAP
    X-ANNOTATEMORE X-UNAUTHENTICATE XUM1 AUTH=PLAIN] myserver.sun.com IMAP4 service (Sun Java(tm)
    System Messaging Server 6.3-7.01 (built May 14 2008; 32bit))If this doesn't work then you need to review the Messaging Server IMAP logs to see if there are any errors. Also confirm whether the imapd process is listed (ps -ef |grep imapd)
    Regards,
    Shane.

  • Urgent-Mail is frozen on a group email-can't open, close, delete...

    I am running Maverics now and when i try to send a grup email, I get a response that I cannot send a message saying "Cannot use the server smtp.gmail - The server "smtp.gmail did not recognize the following recipients" and then it lists every address that I use time and time again with no problems. In addition, I cannot dlete this page, I cannot get into my mail because this page is blocking it. I have tried rebooting, etc and it is still there, blocking my ability to use mail.
    1) How to I get rid of this?
    2) If one adress is no longer valid, mail will not send to the others and I get this frozen page again and cannot use mail. How can i send a group mail?
    Please help!!!

    KAS184 wrote:
    I have the new iPad so I can't shut it off with the Sleep/Wake button which it doesn't have.
    Ah ... yes ..... it does have a power button. Every iPad has the same sleep/power button in the same place on the iPad. I'm happy that you found a solution .... but maybe you should download this for reference.
    http://manuals.info.apple.com/en/ipad_user_guide.pdf

  • HT4539 Is there any way to auto-start the Apple mail app?

    Our company offers a 7/24 service where a user can leave a voice mail in our system and our mail server will send an urgent mail message to the iPhone of the employee on duty so it can be handled in a timely manner. The problem we are having is that if someone turns off their phone and starts it again (or if the user opens the running apps window and shuts down the mail app), the users are not getting those urgent emails.
    While I understand having an auto-starting app would be undesirable, since every developer might start activating that feature, does Apple iOS6 have any way to tell the mail app to restart on iPhone boot? We have a few people using other smartphones with a competing O/S that sounds similar to "asteroid" ;-) and the mail appears to be always operational, even if you shut down the app.

    And be sure to set up Notifications for mail so the phone will beep, buzz, flash, whatever when a message comes in.
    One issue though (discussed elsewhere): the phone will only Notify once. If you didn't hear or see it, there won't be any further warning (unlike, say, Blackberry's flashing LED). You're gonna have to grab the phone and at least bring up the lock screen to see if there are any notifications queued up.

  • URGENT!!!Getting the Ip adds of all computers connected to my computer

    I am developing a small project to track all the active connections with my computer (win 98 OS). i would like to get help on how to keep track of all computers accesing my system and getting thier ip adds..plz help Urgent. mail to [email protected]

    computers accesing my system That requires using the windows api and JNI. If you do not have the MS Developement Library CD you can access the content via the MS web site.
    The sun site has info on JNI.

  • I don't know when new mail in, however I am working on computer

    Example: I am working on my computer: Google or i-Photo. A friend sents an urgent mail. I get no warning, no notification. After 2 or 3 hours I stop and switch off. The day after I discover the mail: sometimes it's too late.
    English is not my mothertongue,sorry!

    Try this Firefox add-on. <br />
    https://addons.mozilla.org/en-US/firefox/addon/webmail-notifier/

  • My Apple software is a nightmare lately

    I've always been really happy with my Macs and the software's been a dream to use.
    Until Leopard that is.
    I always keep my software up to date, as soon as software update wants to download and install I always stand back and let it do it's thing.
    My problems started with Mail. Then the address book. Now it extends to iTunes and my iPods.
    Mail : This thing refuses to quit. 9 out of 10 times that I ask mail to quit, I end up having to force quit it. So many times has it stopped shut down of the Mac.. I am getting tired of this.
    Today I sent an extremely urgent mail to a client, two hours later he called me and asked "Uh.. where's my email man?" Turns out mail had frozen. After a force quit and a relaunch, the mail was sent. No error message, nothing.. It just froze without me knowing.
    This is after the notorious missing new mail sound bug that was fixed an update or two ago.
    Nothing funny about my configuration, I have two accounts, Mobile Me and Gmail, the Gmail keeps on asking me for the mailbox password, but that's a problem with Google, no Apple (I hope).
    Address Book : I have a friend who since the day I upgraded to Leopard has vanished from my address book. I keep on adding him with the same contact details and a different name, but the next time I sync anything, including Mobile Me, POOF! He's gone again.
    For some or other reason, iCal has never been able to pick up his birthday either. But that's been a problem since Tiger.
    iTunes : This thing freezes almost daily. The interface turns into a white block on the screen and it's over from there.
    My iPods have to be restored on a monthly basis - and they aren't used that often either. There are only two iPods, and iPod classic and a 1st Gen iPod touch both with the latest software.
    My question :
    Why is all of this happening all of a sudden? This is the exact reason that I own 2 Macs instead of the 15 PCs I could have bought with the money they cost me.
    Is Apple crashing? Are we on a fiery path to just another Microsoft "if it can't be good at least make it look good - Bill Gates" company?
    I want answers as to what's up with this. It's slowing me down and making me angrier every day.
    Message was edited by: Nicholas Lewis

    Regardless of keeping your software up to date, it can still be slowly damaged over normal use. Brownouts, power surges, bad RAM (which can result in corrupt data when paging out to disk, though such information is temporary). A frozen app can damage any files it had open, including those belonging to the OS if it uses them to function, by having a write operation stop midway.
    I myself just had an issue where Entourage was acting weird, and just in one function. Reapplying the 10.5.6 Combo update resolved the issue by replacing system files with new ones.
    I would suggest this.
    1) Boot to your OS X installation disk and run a Repair Disk to make sure the drive isn't having issues with a damaged file structure. If you have it, use DiskWarrior as it is better suited to this task.
    2) Do an Archive and Install of the OS from your original disks. Then apply the 10.5.6 Combo Update.

  • IPad2 shows lines of color when waking from sleep?

    I recently got a iPad2 and was really happy with it until yesterday when i noticed that as i woke it from sleep for a split second red, green a and blue horizontal lines appear at random only about 1 pixel thick. The are never in the same place and sometimes you barley notice them flash on, however it is more noticeable if you sleep and wake the iPad quickly. I have sent it off for repair but was wonder if anyone has also had this problem and if they have a solution as i am waiting for the postage box to arrive?
    Thanks

    Have just sent mine off for diagnosis and repair/replacement. Will tell you the outcome if you wish. It is very simple to get it sent off, just ring up, they will take you through some steps to try and solve it (this wont work). They will then send you an empty box, you place the iPad in this and arrange UPS to come and pick it up from home or business address the next day and it is sent to apple to repair or replace. They then send it back and it is all sorted after a maximum of 13 business days. All of the posting is also done via urgent mail so it travels over night and arrives after 2 days.

  • Func spec deign

    plz send me func spec deisgn document .
    its urgent
    mail id
    [email protected]
    i will assign points immediately
    Edited by: kamaraju saigowri on Jan 26, 2008 8:08 AM

    hi Lakshmi,
    The Functional Specs will have high level description of the Requirement , Functional assumptions on the development , Possible solutions and best solution to achieve the development,
    In Technical Specs, we should explain Detailed Technical info of how the object is going to be developed,
    For Example if it for a new Custom Cube Development,
    It will have the following things,
    Technical details on :
    In R3 : Datasource Used, Source Table and Field Information from where the data will be extracted,
    Type of Data source and related Details,
    In BW:
    Mapping Document ,
    Details on any start routine transfer routine , upfdate routine handled,
    Data model of the cube,
    Expected Data volume ,
    Frequency of Load,
    Corrective measures if any
    Unit Test and Integration test cases,
    Hope this helps, If require send me your FS i can guide you further
    sathy

Maybe you are looking for

  • Help!!! How can I see what devices are connected to my icloud

    How do I know what devices and computers are linked to my icloud? Used it once at my ex boyfriends house on his computer and I think my photo stream is going to his desktop??? How can I tell and if so disconnect from it?

  • Acrobat won't play with Windows 7 nicely

    I am running Acrobat 9 Pro on Windows 7 32-bit. I save a pdf then close the pdf.  I do not close the program, just the pdf.  I go to windows explorer and attempt to move the folder that contains the pdf I just closed (as well as a few other files). 

  • How does one get a simple URL link onto the Designer Form?

    Greetings: Thank heavens for small favors, kudos to Adobe for Designer and its basic email functionality. One annoying thing, I am finding it impossible to put a simple link on the Designer Form. Likewise, if I open the form in Acrobat, the link icon

  • ITunes went nutso re: synching - it shows more than 700 millions Gigs!

    Hello, I am in a big bind, needing to synch my iPod before tommorow noon! I never had this issue before. I re-installed XP and iTunes on a new HDD and had no problems. I then re-installed Anapod, and it asked that the iPod be set to use as a hard-dri

  • How to display utf8 characters in sql developer

    Is there a setting I need to change in sql developer in order to display utf8 characters? I am seeing weird characters when displaying chinise/arabic characters in sql developer. I can display the same data just fine in Putty ( I changed the followin