Email Templates - Addressing as CC and BCC?

How do you address an email so that it the recipient email shows in the CC or BCC box?
Is there a way to set up email templates so that a "copied" or "blind copied" recipient sees their email in the corresponding CC: or BCC: field?  (I am trying to get around the issue of addressing email directly to Customers when I really want to Copy or Blind Copy them.  Is this possible?  Using RC2009.1.
--Thanks everyone/anyone.

Hi Mark,
      Please check below link. It will give you idea for your issue:
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2c678dc3-0401-0010-3c80-8ef48f450491">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2c678dc3-0401-0010-3c80-8ef48f450491</a>
Regards,
Subhasha

Similar Messages

  • Adding cc and bcc facility in mal

    dear friends,
    i'm using the following codes to send email from my email.jsp page.
    the mail is being send to the recipient. but the mail is not delivered to the address in CC, and BCC address.
    how can sent to all of these address? plz help....
    try{
    SmtpClient client = new SmtpClient("some.client.com");
    client.from(fromAddress);
    client.to(toEmail);
    PrintStream msg = client.startMessage();
         if (fromAddress!= null && fromAddress.length() > 0) {
              msg.println("From: " + fromAddress);     
         } else {
              msg.println("From: " + "Unknown");
         if (sub != null && sub.length() > 0) {
              msg.println("Subject: " + sub);
         } else {
              msg.println("Subject: " + "[none]");
         if (cc != null && cc.length() > 0) {
         msg.println("Cc: " + cc);
         if (bcc != null && bcc.length() > 0) {
         msg.println("Bcc: " + bcc);
    msg.println();
    msg.println(messageEnter);
    client.closeServer();
    catch (IOException e){     
    System.out.println("ERROR SENDING EMAIL:"+e);
    }

    You shouldn't be using sun.net.smtp.SmtpClient.
    http://java.sun.com/products/jdk/faq/faq-sun-packages.html
    Use JavaMail instead.
    http://java.sun.com/products/javamail
    JavaMail includes lots of sample code that shows you how to send a simple
    message, including setting Cc and Bcc.

  • Sending email notification  using email template in OIM 11g

    HI all
    I want to send an email to the user in OIM 11 g using API's
    I have created a email template using oim 11g's design console.
    now i want to access that email template from design console and send mail to user.
    previously in OIM 9i there was class com.thortech.xl.dataobj.util.tcEmailNotificationUtil;
    which was having utilities method like send-email etc.where we were able to access the email template from design console and send mail to user.
    I want such API's to send mail to user in OIM 11g.Iam unable to find the tcEmailNotificationUtil class in OIM 11g;
    Thanks in advance
    Bipin patil

    Thanks kuldeep
    I have one single question,.
    I have gone through the 11g docs but it is not present in the oim 11g docs any reasons for it .

  • I am trying to send an email to myself and BCC everyone in my address, but have forgotten how. Can someone help me with this?

    I am trying to send an email to myself and bcc everyone in my address book, but have forgotten how. Can anyone help me with this? Thanks.

    http://chrisramsden.vfast.co.uk/7_How_do_I_send_to_everyone.html

  • When emailing a photo from the updated iPhoto, how do I find the CC and BCC button, and how do I send to a group from my address book?

    when emailing a photo from the updated iPhoto, how do I find the CC and BCC button, and how do I send to a group from my address book?

    The email function from iPhoto is pretty basic. The only Bcc available is to yourself (in iPhoto > Preferences > Advanced), cc: does not appear to be available at all, and it does not appear you can email to a group.
    You can change this by going to iPhoto > Preferences > General and next to where it says Email photos using: select Mail. If you do this you have all the options available in Mail including Cc: and Bcc: and the ability to drag a group from Address Book into the mail addresses.
    Best of luck.

  • I would like to find out how I can setup my Mac Air to allow me to have an email template open up in Outlook instead of Mail when I click on an email address on a website.

    Can anyone help me with setting up my Mac Air, to allow me to have an email template open up in Outlook instead of Mail when I click on an email address on a website?

    All the limits you mention 100 e-mails at a time and 500 in a four hour time frame are limitations imposed by your mail provider, not Thunderbird. Thunderbird places no restrictions on the maximum number of recipients.
    Have you tried turning your computer off for a few minutes?

  • How to send a group email where the recipients' names and addresses remain anonymous?

    I wish to send out an email to a "Group" in my Apple Contacts. I want the several recipients in the group to be unknown to each other, where their names and addresses are invisible – except myself, the creater of the email.
    Does Apple 'Mail' and/or 'Contacts' allow for this?
    And, by keeping the group invisable, will this prevent any one recipient from responding as a 'Reply All,' thereby still being able to respond to everyone in the otherwise invisible group?
    TOM

    Put the addresses in the Bcc field. If it is not shown, select it from the button on the compose window:

  • How to pass more than one email address in email template

    Hi all.
    I need to pass email address list in TO field of email template.I passed the list with comma delimeter but even though mail is trigerring only to the first email address in the list...
    If any one come across this please mail me...
    It is bit urgent....
    Thanks in advance....

    Hi Thanks for your reply.
    No there is no space between two mail ids and also i tried by hardcoding the email id's in TO field even though mail is not triggering....
    Through rules i am pasisng the notifer list.Just i am calling the rules in variable and passing that variable in TO field....
    Is there any other way to solve this problem...

  • Add BCC to email template

    Hello all ,
    How do i add a BCC tab to an email template on IDM.
    Thanks Carol
    Edited by: carol_mlobo on May 8, 2008 3:50 AM

    Try this and let me know ...
    if ($send != "no") {
    $sender_name = removecrlf($sender_name);
    $sender_email = removecrlf($sender_email);
    $msg = "$sitename\n\n";
    $msg .= ""._SENDERNAME.": $sender_name\n";
    $msg .= ""._SENDEREMAIL.": $sender_email\n";
    $msg .= ""._MESSAGE.": $message\n\n";
    $to = "[email protected]";
    $mailheaders = "From: $sender_name <$sender_email>\n";
    $mailheaders .= "Reply-To: $sender_email\n";
    $mailheaders .= "Bcc: $bcc\n\n";
    mail($to, $subject, $msg, $mailheaders);
    // mail( $to, $subject, $msg, "Return-Path: $from\nFrom: $from\nCc: $cc\nBcc: $bcc\n" )
    echo "<P><center>"._FBMAILSENT."</center></p>";
    echo "<P><center>"._FBTHANKSFORCONTACT."</center></p>";
    Regards,
    Maulik

  • HT5621 I have 2 email addresses ( 1 mac. and 1 blueyonder.) with separate Apple IDs for each ( again 1 mac and 1 blueyonder). This has consistently given me problems with passwords and I would now like to combine them into one account to help overcome thi

    I have 2 email addresses (1 mac.and 1 blueyonder.) each with separate identities and passwords. I am forever getting asked to verify identity and/or passwords and having these refused and me then having to set up new ones. Can I combine my email addresses to a single Apple Identity and Password? If yes then How?
    Any help much appreciated as this is driving me crazy!

    Depending on what you're asking...
    There is no means to merge Apple IDs.  You can change the mail address assocaited with your Apple ID, so you might switch to using and purchasing from one email address, and using the second as a backup.  (There's no means to merge the purchases, and related baggage.)
    While I'm guessing this was about Apple IDs, for completeness...  Combining the mail messages involving multiple email addresses is separate from the Apple ID; that is usually done with some combination of notifying the senders or with the forwarding of messages from one mail server to the preferred server.  Or running multiple mail accounts in parallel, depending on what you are up to.

  • Are CC and BCC options available in XML Publisher email?

    I am working in XML publisher phase 2. I want to know whether there is any way to set CC and BCC options in email outputs.
    If yes, how can I do?
    What is the way to sent same mail to multiple persons?
    Thanks in Advance
    Sudheesh Sudhakar

    Have you looked in Mail Help? When I search for Bcc there, I get an article titled “Keeping confidentiality” and another titled “Sending an email to several people” that appear to contain the information you’re looking for, including what Klaus suggested and more...

  • Problem with replies in Maverick's mail.  Originating emails send fine.  When replying to an email (various addresses) the reply is hung up and can not be sent.  Option becomes put in draft, delete, etc.  Any suggestions would be helpful

    Problem with replies in Maverick's mail.  Originating emails send fine.  When replying to an email (various addresses) the reply is hung up and can not be sent.  Option becomes put in draft, delete, etc.  Any suggestions would be helpful.  Mid 2013 iMac.

    I don't know how rare this is.  I went a week or so without a problem, and now it's starting to recur.  Also, in some instances, an email will look unsent (remain in the outbox on the Treo), but it has been sent, and recipients are replying while I'm trying to figure out what is going on.  Further, it will send the same email over and over during this madness.
    This is a show stopper.  If there isn't a software fix soon, I may chuck this phone in the garbage.
    Post relates to: Treo 800w (Sprint)
    UPDATE:  The problem comes and goes.  The next day, no changes to the treo, everything workeds.  Now i'm suspecting the sprint server, and how it/the phone responds from failing to send while roaming.  I've since turned off roaming, and haven't had a problem for several days.
    Message Edited by slrichardson on 12-22-2008 01:12 PM

  • Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi Lawrence1981,
    Thanks for visiting Apple Support Communities.
    You may want to check this article for additional troubleshooting steps:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Cheers,
    Jeremy

  • Delivery report shows status of Pending for external address. Email sent to both internal and external addresses.

    We have an Exchange 2013 on-premise server and seem to have an issue with emails sent to internal and external users at the same time.
    The issue came to light because someone sent an email to 44 recipients, of which one was internal. None of the external recipients received the email. I checked the delivery report in the EAC and found the internal email marked as 'Delivered' and all of
    the external ones marked as 'Pending'. I checked the queues and there were none. I did some testing and sent an email to just one of the external addresses on the list, it arrived. I tried sending the email again to all of the recipients, the external ones
    all showed 'Pending'. I tried it again, but this time excluded the internal email address and all of the 43 external emails were immediately delivered.
    So it seems that the issue only arises when we are sending to both internal and external addresses.
    I then tried a test email to one internal address and one external address. The Delivery report says that the internal address was delivered immediately, while the external address is 'Pending' and gives more information saying: 'Message delivery is taking
    longer than expected. There may be system delays. For more information, contact your helpdesk.'. To add further mystery to this, the email was actually delivered.
    So, I have two concerns:
    First is seems that some emails sent both internally and externally are only arriving internally. This is a huge problem because I don't know how many have been affected. There may be many lost emails we don't know about.
    Second, it looks like I can't trust the delivery report. It says pending for some emails which didn't arrive, but it also says pending for some which did arrive. That is no good at all.
    For info the server is running Windows Server 2012. I have run a Microsoft Update to check if there are any to apply and the only Exchange one is a spam filter update, which I doubt has any bearing but I will apply when I get chance.

    Hi Neil,
    According to the description, I find a related KB on Exchange 2010:
    https://support.microsoft.com/kb/2694474?wa=wsignin1.0
    It has the similar situation as yours.
    This issue occurs because a function in a message tracking component tries to obtain the information for the recipient instead of the external recipient.
    Please try to upgrade to the latest Exchange update to check whether this issue can be solved.
    Also please check whether Throttling has been set.
    Please run "Get-TransportService | fl" to check the MaxOutboundConnections parameter value.
    More details to see:
    Message throttling 
    http://technet.microsoft.com/en-us/library/bb232205(v=exchg.150).aspx
    Thanks
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Mavis Huang
    TechNet Community Support

  • I changed my apple ID password and now facetime cannot verify my e-mail address.  I have tried changing my password back but still recieve the same pop up window telling me that the email could not be verified and to check my network but have wifi working

    Please help.  I changed my apple id password and now cannot use facetime and my icloud continues to prompt me for my password and I continue to give it but, I repeatedly am prompted for the password unless I cancel the icloud.  I have tried changing my password back to the password I had before and this did not work.  I have tried to use another e-mail address for facetime and had verified that e-mail address and this did not work.  I do not know how to fix this problem.  I have thought about changing my apple id but am not sure how I would be able to carry over the same credit card number to the new apple ID.  I loved my Mac book Pro because I could facetime my boyfriend while I am working away and now I cannot.  I am starting to hate Mac.

    The idea to jumpstart by change was not the smartest one, but gives you an opportunity to use that "temporary" account as permanent. You do not have a choice cause obviously despite you thinking that old account is no more -it does exist on Apple servers. And if you are unwilling to share your [email protected] with friend, just create one extra [email protected] for your friend. One suggestion - do not use gmail.

Maybe you are looking for