Have to send mail CC and body with person details also?

Hi,
I have requirement sending mail TO as wellas CC also.
How can i send?
TO:Project manager,
CC:TeamLeader.
In the body,
Contact Person,
Phone No:
These details i have to send.
Tell me the procedure to do in workflow?
Early reply is highely appriciable?
Regards,
Chow.

hi chow
u can use this FM SO_NEW_DOCUMENT_ATT_SEND_API1.
it will surely help.i guess u know how to use FM.
regards
ashish

Similar Messages

  • I send mail via SMTP server with Hebrew text, and I get it gibberish on my iphone

    I send mail via SMTP server with Hebrew text, and I get it gibberish on my iphone

    What mail program from what kind of computer are you sending your email?  It sounds like an encoding problem that would have to be solved on the sending end.   If you want, send me an example of the kind of email which arrives as gibberish on your iphone (tom at bluesky dot org).

  • Change mail subject and body text

    Hi all,
    i activated access method M in tr. SPAD and via this method i'm sending various reports in PDF to external e-mails. But when recepitiens recive e-mail i have subject of e-mail composed of SYSTEM ID and SPOOL NUMBER (e.g. R3P-12345) and i also have defaulted mail body text :
    The Mail Attachment Contains the Print File Created by User XXXXX , with Number xxxx from SAP System R3P .
    To Print the Data, Open the Mail Attachment with a Suitable Program and Print the Document.
    How can i change mail subject and body text?
    Regards,
    PS*

    For the output type Maintian the Mail body and subject.
    You can do this at NACE==>Output Type ==> Mail title and texts
    rgds,
    TM
    See the link
    http://www.geocities.com/rmtiwari/main.html?http://www.geocities.com/rmtiwari/Resources/MySolutions/Dev/UtilityCode.html
    Message was edited by: Thomas Mann

  • Sender Mail Adapter - html body mail

    Hello Everybody,
    I'm facing this strange problem:
    I receive an e-mail with an XML attachment with a sender mail adapter and I use the PayloadSwapBean to let the attachment be the real payload as explaned in this blog
    <a href="/people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step:///people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    If I receive mail in text/plain format everything works fine, but as soon as I get an email with an html body (content-type: multipart/alternative; boundary=...) it doesn't any more (In the XI  Monitor i still se 2 payloads, but I can only open the one with the attachment).
    In this case the mapping is stuck in "scheduled for outbound process" status and the XI queue gets blocked with status "SYSFAIL" giving this error "Access via 'NULL' object reference not possible".
    Is there any way to force XI digest also HTML e-mails?
    As always, thanks a lot for your help.
    Daniele

    Thanks Akshay,
    this really worked!
    Fyi I'm using XIPAYLOAD option. I added in the module chain, before the PayloadSwapBean, a MessageTransformBean with this parameter:
    Transform.ContentType - text/plain;charset=uft-8
    this way I can also see the massage body in the monitornig.
    Hope this will be helpful for someone else.
    Regards,
    Daniele

  • Use of ABAP expression in the Send Mail Header and Text

    Hi Workflow Gurus,
    I have a requirement wherein I have to inform the Manager of a user that his/her request for leave availment has been approved. However, we need to show the users name for the Manager to easily identify the user.
    Now, I checked the send mail step and it is possible to insert an expression, but the available expressions are confined within the containers available. Hence, we only have the user id of the workflow initiator.
    Is there a way to place a code in the send mail expression which will determine the user's employee name given the user id as opposed to having to create an FM and a method to determine the users name? Or is the only recourse to develop and fm and a method to determine these details in the background and pass it to the containers for extraction?
    Regards,

    If you don't have for example the employee name in the available container elements, you need to add it and do the necessary coding/development for it. Classically employee or user data has been retrieved by using a certain standard background task to get the user/employee object based on the user ID. This will require an additional background step but no coding since the task includes the coding already.
    It is anyhow possible to try to get the data for example with functional methods by using container operations  in the workflow (or it is also possible to do this in binding too) - but then you need to develop a functional method(s). In other words you can use a functional method for example in your binding or in a container operation. Check for example Jocelyn Dart's blog about functional methods. Anyhow, how well the functional methods will work depends on the SAP system version.
    Regards,
    Karri

  • Send mail to exchange server with TLS

    Hi,
    last month I enabled an oracle wallet TDE for creating encription for TS.
    Today, development team needs to send mail to exchange server with TLS.
    So I found this procedure on oracle support Doc ID 1323140.1
    My question is, can I use the same wallet to send mails from db?
    The Oracle Database  11.2.0.3
    Or I need to implement a different type of wallet with certificate?
    Is there, in this case,  a procedure step by step?
    I have never implemented that and I'm very confused....
    Thanks in advanced

    Hi, I have implemented a new wallet with certificates (for test SMTP.gmail.com) and i'm tryied to use this procedure:
    DECLARE
    mailhost VARCHAR2(64) := 'smtp.mydomain.it';
    sender VARCHAR2(64) := '[email protected]';
    recipient VARCHAR2(64) := '[email protected]';
    wallet_pwd VARCHAR2(64) := 'welcome1';
    wallet_loc VARCHAR2(64) := 'file:/etc/ORACLE/FRMSSYST/SMTP/';
    user_name VARCHAR2(64) := 'HDC021319';  -- alias for '[email protected]'
    user_pwd VARCHAR2(64) := 'password';  -- password of [email protected]
    mail_connection utl_smtp.connection;
    BEGIN
    -- Make a secure connection using the SSL port configured with your SMTP server
    -- Note: The sample code here uses the default of 465 but check your SMTP server settings
    mail_connection := utl_smtp.open_connection(
    host => mailhost,
    port => 25,
    wallet_path => wallet_loc,
    wallet_password => wallet_pwd,
    secure_connection_before_smtp => FALSE);
    -- Call the Auth procedure to authorized a user for access to the mail server
    -- Schemes should be set appropriatelty for your mail server
    -- See the UTL_SMTP documentation for a list of constants and meanings
    UTL_SMTP.helo(mail_connection, mailhost);
    UTL_SMTP.STARTTLS(mail_connection);
    UTL_SMTP.AUTH(
    c => mail_connection,
    username => user_name,
    password => user_pwd,
    schemes => 'LOGIN');
    -- Set up and make the the basic smtp calls to send a test email
    utl_smtp.helo(mail_connection, mailhost);
    utl_smtp.mail(mail_connection, sender);
    utl_smtp.rcpt(mail_connection, recipient);
    utl_smtp.open_data(mail_connection);
    utl_smtp.write_data(mail_connection, 'This is a test message using SSL with SMTP.' || chr(13));
    utl_smtp.write_data(mail_connection, 'This test requires an Oracle Wallet be properly configured.' || chr(13));
    utl_smtp.close_data(mail_connection);
    utl_smtp.quit(mail_connection);
    END;
    This procedure, works fine if I try to send an email to smtp.gmail.com (I tried first with gmail with appropriate certificates), but now, when I try to send an email to the local enterprise Exchange server  I get this error:
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 503 5.5.2 Send hello first
    ORA-06512: at "SYS.UTL_SMTP", line 54
    ORA-06512: at "SYS.UTL_SMTP", line 140
    ORA-06512: at "SYS.UTL_SMTP", line 439
    ORA-06512: at line 35
    Thanks in adavanced

  • How do I send mail link this page with iCloud

    I'm having problems sending mail link from safari with iCloud please.
    Please help

    There is an option to "Send Link..." in the File menu. Firefox does not have a built-in send page by email option.

  • I have a new mail update and it won't even open, and now I can't use the old mail app either.

    I have a new mail upgrade and it won't even open. How do I fix this?

    You mean the Apple Mail app? Updated through software Update in the Apple Menu?.
    Or maybe you downloaded Mail from another source?
    Do you still have Snow Leopard or didn't you update your profile?

  • HT1918 I have several old email addresses and accounts with itunes where the email is no longer working, and i have forgotten my password,  how do i activate the songs?

    I have several old email addresses and accounts with itunes where the email is no longer working, and i have forgotten my password,  how do i activate the songs

    Welcome to the Apple Community.
    The following article(s) may help you.
    Look up your old and forgotten Apple ID

  • TS1347 Have been using an iPhone and syncing with Outlook for several years.  Since downloading latest version of iTunes, contacts and calendars are not syncing.  Both items show to be checked for syncing.  Any suggestions?

    Have been using an iPhone and sysncing with Outlook through iTunes for several years.  Downloaded the recent update to iTunes and now sycing of contacts & calendars is not occuring.  I did see that i had to recheck to sync contacts and calendars again and have done this, but still no syncing is occuring.  Any suggestions?

    Hi Brian!
    I have an article here for you that addresses your issue and can help you troubleshoot this further:
    iPhone, iPad, iPod touch: Troubleshooting contact and calendar syncing via USB on Windows
    http://support.apple.com/kb/HT1692
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • HT5361 Been using mail forever and only with my gmail account. All of a sudden, all my inbox mails are missing except for anything after yest night. I log into gmail on safari and everything is there but not on my mac or iphone in mail

    Been using mail forever and only with my gmail account. All of a sudden, all my inbox mails are missing except for anything after yest night. I log into gmail on safari and everything is there but not on my mac or iphone in mail

    Same problem in 8.1.3
    Apple help!

  • HT204088 When trying to update an app, it partially downloads and then displays the message "unable to download item" Please try again later. This happens on any app I try. I have tried deleting the app and reinstalling with same results. What can I do?

    When trying to update an app, it partially downloads and then displays the message "unable to download item" Please try again later. This happens on any app I try. I have tried deleting the app and reinstalling with same results. What can I do?

    I have the same thing happening on my iPod Touch 5th gen. Been happening for at least a month. I have updated to the most recent version of iOS which hasn't solved the issue. Must be a bug that they didn't get around to resolving yet, a year later. Really annoying to have it pop up when you are in the middle of a game though.

  • How do you reduce the size of the email storage on an iPhone?  I have deleted all mail items and my mailbox still takes up 1.2 GB of space.

    how do you reduce the size of the email storage on an iPhone?  I have deleted all mail items and my mailbox still takes up 1.2 GB of space.

    What is the Other on my iPhone and How to Remove It
    Also
    "First you go settings/general/usage/music/then left swipe over music and press delete and you would think it deletes your music but it doesn't instead it deletes your other but make sure your ipod is connected to a computer while doing this"
    as recommended by:
    How do I get rid of "other" storage: Apple Support Communities
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • Attempted to create a slideshow (version 9.3) and get the dreaded twiling ball that will not go away; iphoto locked up when open.  how do I get rid of the ball.  Have forced quit seveal times and opens with the ball p

    Attempted to create a slideshow (version 9.3) and get the dreaded spinning ball that will not go away; iphoto locked up when open.  how do I get rid of the ball.  Have forced quit seveal times and opens with the spinning ball.

    Make a temporary, backup copy if you don't have a backup copy of the library (select the library and type Command+D) and  apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #1, followed by #3 and then #4
    Launch iPhoto and try again.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I have two e-mail addresses and on the left hand side in mail if i expand the sent box one account has an exclamation mark appeared and some mail has deleted it's self??

    I have two e-mail addresses and on the left hand side in mail if i expand the sent box one account has an exclamation mark appeared and some mail has deleted it's self??

    You can continue to use them as Apple ID's, change the rescue address (as you know)
    You can use your iCloud address, but it won't be an alias, it's a full email address.

Maybe you are looking for

  • Can't view prices on PDF estimate

    I can't view fields in a pdf on my iphone. I can see the pdf but not the prices that have been entered.  I can see them fine on my windows PC.  Also can't see them on my IPad. Estimate was created in Abobe Acrobat X. 

  • Question about import all tables except one

    I have exported all tables for a user. While importing I want to import all tables except one table whose name I know. How do I do this? Example: If I have tables: Employee, address, salary that I have exported. While importing I want to import only

  • Interface - Payment received from 3rd party

    Good day, Can you please assist? Is there a standard IDOC that I can use to post payments to IS-U. We will receive the payments in a flat file format from the 3rd party.

  • ClassCastException with arrays

    I have a class with a type parameter and an inner class. The inner class uses the type parameter, but is not itself parametized. The following compiles but gives a ClassCastException when MyClass's constructor executes. How do I avoid this error? Tha

  • Time in title - HELP !

    hello instead of showing me the time in the ipod title now its written there- 80 what the ** is that ?! how can i fix it?!