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

Similar Messages

  • Blind carbon copy in email templates?

    Hello,
    how can I use blind carbon copy (bcc) in email templates?
    I added the field to the E-Mail Template und modify the waveset.dtd, but this is not enough.
    How can I use a BCC to an email template on IDM?
    Thanks

    Good morning.
    This is actually a bug:
    Bug 12699 - RFE: add support for BCC recipient to email notification
    IDM 8.1.1 will be the first available version to contain the fix.
    Regards,
    Alex

  • 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

  • How to Add tokens to an email template?

    Good morning Gurus,
    I am customizing an rfx award email template using tokens but I keep getting an error saying: "The RFX_INTEND_TO_RESPOND_DATE Token is invalid. Code-related."
    Please see attachment for further clarity.
    Regards,
    Sabelo.

    Hello Sabelo,
    Unfortunately there is no possibility of adding extra tokens beyond the provided list.
    You can see all the available tokens for each email type in the reference guide:
    Bogdan Toma

  • Can no longer select text in email template or read only field with mouse using IE or Firefox?

    Hi Guys,
    I can no longer select text in email template or read only field using my mouse in IE or Firefox anymore. We are using CRM 2011 rollup 18 applied with IE 11 and the latest version of Firefox. We only applied roll up 18 in Feb when this issue began.
    Thanks
    Dave
    David Kelly

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies (save any pending work first) using either of these. While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    These features rely on JavaScript, and it sounds as though you have scripting enabled if you get (the wrong) color changes. Some add-ons might alter the way scripts operate, so a standard diagnostic to bypass interference by extensions (and some custom settings) is to try Firefox's Safe Mode.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [[Backing up your information]]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in Firefox's Safe Mode ([[Safe Mode]]) using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode."
    If those features work correctly, this points to one of your extensions or custom settings as the problem.
    To also disable plugins, you can use this page:
    orange Firefox button ''or'' classic Tools menu > Add-ons > Plugins category
    Any change?

  • Problem with links on email templates

    Problem with links on email templates
    Hi,
    We have been having issues with links on our email templates. Some of the links point to the following URL:
    http://server'sname/thirdparty/FCKeditor/editor/fckeditor.html?InstanceName=emailTemplatesDTO.htmlBody&Toolbar=NewscaleFCKEditorToolBar#URL
    Sometimes we get “Unknown internal error” on the web page.
    Can anyone help or advise on how to resolve this issue?
    Many thanks,
    Wesley.

    Hi Wesley,
    This is rather late, but we've seen the same thing frequently (and I believe can replicate it).  It's caused when you a creating a new email by copying the content of an existing one with a name space in it.
    Upon copying, the link gets scrambled.  The approach we use is to copy the email in to a new template, then strip out all of the URL links and add them back in.
    Thanks!
    Ant

  • Custom Alert Email Templates Issue - List Alerts emails not using customized XML alert template

    I have recently customized the XML alerts template (AlertTemplates.xml) for our site collection in SharePoint 2010 to exclude specific fields in the email when users who have subscribed to a list using the "Alert Me" feature.  I
    have renamed the custom alerts XML file and loaded the custom template in the following directory (%ProgramFiles%\Common Files\Microsoft Shared\Web server extensions\14\TEMPLATE\XML) and
    restarted IIS.  Once users subscribe to the alerts using the list using the "alert me" function they received the customized email as intended. 
    We needed to auto-subscribe users to the email alerts so what I did was used a powershell script to add users to the alert subscriptions using the script shown in below:
    Import-Csv D:\Temp\filename.csv | ForEach-Object{
    $webUrl=$_.WebUrl
    $listTitle=$_.List
    $alertTitle=$_.AlertTitle
    $subscribedUser=$_.SubscribedUser
    $alertType=$_.AlertType
    $deliveryChannel=$_.DeliveryChannel
    $eventType=$_.EventType
    $frequency=$_.Frequency
    $oldAlertID=$_.ID
    $web=Get-SPWeb $webUrl
    $testAlert = $web.Alerts | WHERE { $_.ID -eq $oldAlertID }
    IF ($testAlert) {
    $web.Alerts.Delete([GUID]$oldAlertID)
    Write-Host Old alert $oldAlertID deleted. -Foregroundcolor Cyan
    $list=$web.Lists.TryGetList($listTitle)
    $user = $web.EnsureUser($subscribedUser)
    $newAlert = $user.Alerts.Add()
    $newAlert.Title = $alertTitle
    $newAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::$alertType
    $newAlert.List = $list
    $newAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::$deliveryChannel
    $newAlert.EventType = [Microsoft.SharePoint.SPEventType]::$eventType
    $newAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::$frequency
    if($frequency -ne "Immediate"){
    $AlertTime=$_.AlertTime
    $newAlert.AlertTime=$AlertTime
    $newAlert.Update()
    Write-Host Created $newAlert.Title for $subscribedUser . -Foregroundcolor Cyan
    } ELSE {
    Write-Host Alert $alertTitle for $subscribedUser already done. Moving on. -Foregroundcolor Magenta
    When I ran the script and added the users and restarted the service, all users who were auto-subscribed via this method would get the email without the customizations that were done in the custom template.  All users who manually subscribed to the list
    using the "Alert Me" function would get the customized email. 
    Does anyone know why users who manually subscribe would get the custom email alert and why users who were auto-subscribed using the powershell script do not get the custom email alert?

    Hi  ,
    According to your description, my understanding is that users who were auto-subscribed using the PowerShell script do not get the custom email alert.
    For your issue, it can be caused by the auto-subscribed alert email which is generated by PowerShell script is  using OOTB alert template. You can add the following script into your script for setting
    the alerts’ alert email template:
    $contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
    $AlertsTemplateCollection =new-object Microsoft.SharePoint.SPAlertTemplateCollection($contentService)
    $newAlert.AlertTemplate = $AlertsTemplateCollection["YOUR_UNIQUE_TEMPLATE_NAME_VALUE"]
    Reference:
    http://sadomovalex.blogspot.com/2012/03/one-problem-with-updating-alert.html
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Custom Workflow Email Template

    Hi All,
    We have created a custom email template using components.
    At the applicable steps in the WF process we use wfNotify("user","user","CUSTOM_TEMPLATE") to use the cuystom template for email.
    The problem we have is that the users then receive 2 emails, the system one and the custom one. Not sure if there is a better way to do this?
    We have tried using the &lt;$wfSetIsNotifyingUsers(0)$&gt;to disable the notifications to then send just the custom email one out, which does work, but the issue is that then on the "My Workflow Assignments" Page, the step in the flow doesnt get assigned to that user. The user can still go update from the Active Workflow Page, but not ideal.
    Any ideas or suggestions would be appreciated.
    Thx

    I think what you are looking for is a "token" and not just a notification. Assigning the users to a step is different than just notifying a user in a given step. For example, you may want to notify the document's author if something is taking too long to get through workflow but not allow the original author to just push it through themselves. To assign it to that person you'd create a token and then add that token to the step. The documentation should be about to help you out with creating the token. If not, just post another question.
    As a side note: at Fishbowl Solutions we've created a series of components that help you with some of these workflow problems and put them into a product we call Workflow Solution Set. One of those components enables you to more easily customize the workflow notifications that get sent out to users. You can find more information on our website. [http://www.fishbowlsolutions.com/StellentSolutions/StellentComponents/fs_workflowsolset_webcopy?WT.mc_id=L_Oracle_Software_tjo]
    Hope that helps,
    Tim

  • I CANNOT ADD FILES TO EMAIL IN FIREFOX BUT I HAVE NO PROBLEMS WITH WINDOWS INTERNET EXPLORER. wHY?

    I CANNOT ADD FILES TO EMAIL IN FIREFOX BUT I HAVE NO PROBLEMS WHEN USING WINDOWS INTERNET EXPLORER

    Perform the suggestions mentioned in the following articles:
    * Make sure that you are using the '''"Remember History"''' setting as described in this article -> [[Settings for privacy, browsing history and do-not-track]]
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache Clear Cookies & Cache]
    * [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    Check and tell if its working.

  • Placeholders in Email templates - Marketing

    Hi everyone,
    Does anyone know if it's possible to add custom placeholders in the email templates for Marketing Campaigns? (menu: Marketing->Content->Email templates)
    If this is not possible, does anybody know if we can add code, through the SDK, during marketing campaign execution?
         I don't find any suitable Events/Validations/Actions Validations in the Create Script Files section for an extension on the Campaign Business Object.
    Our goal would be to implement a coupon placeholder allowing us to send out personalized coupons (generated through a webservice) in an email marketing campaign.
    Many thanks in advance,
    Best regards,
    Joost Stallaert

    Hi Janina,
    are there any new information regarding this topic? We also want to add customer specific placeholders to the template. Is there any other possibility to add e.g. the accounts owner to the template?
    Thanks in advance
    Lars

  • GP: Replacements (parameter) in email templates

    Hi,
    I have created an email template to send a notification. Into this email I want to add several parameters (which should be done via replacement ?). But neither from the documenation nor by trying I can get these replacements show up. Right now my email template looks like this
    <html>
    <head>
    <title>General Change Request: Notification</title>
    </head>
    <body>
    <p>
    Dear Mr/Ms
    `{
    writeln (role.initiator.lastname)
    }`
    </p>
    <p>Your request has been rejected.</p>
    <p>
    `{
    writeln (reason)
    }`
    </p>
    <p>Best regards,</p>
    <p><i>Global Change Management</i></p>
    The last name shows up, but the reason does not. The collable object of type "Notification" has a input parameter "reason" but it doesn't work. I also tried "writeln (input.reason)" and "writeln (co.reason)"  but it didn't work either. How do I have to name the input parameter and the replacements to get this work?
    Thank you very much, Olaf

    Hi,
    Please, try with writeln(ctxt.reason).
    Regards,
    Zornitsa

  • Email Template Help

    Hey everyone.  I've search for a long while about this topic but didn't find an answer, so here goes:
    I'm creating my own custom emai template to be used in Outlook 2003.  I've created 3 tables all of the same width.  One as a header (with an image centered) another as the body and the last as a footer with a custom signature and 2 graphics linked to my FB & Twitter pages.  I'm almost completed but there are two nagging problems:
    1. I can't figure out how to format the "body" table with single line spacing.  (remember I want this field to be blank until text is added when an email is written).  Everytime I save the .html file and open it in Outlook it reverts to double spacing.  I know this can be done because all of the standard Outlook stationary html files use single spacing.
    2. I'd like the 2 bottom graphics to be immeadiately underneath the signature.  As it is the graphics are a few lines below and I can't get them to move up without affecting the signature text.
    Thanks in advance.  I really appreciate your efforts.
    - Solan
    HERE'S THE CODE (I hope pasting it here is appropriate)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>H2H Email Template</title>
    <style type="text/css">
    <!--
    body,td,th {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 12pt;
              color: #020202;
    -->
    </style></head>
    <body>
    <table width="98%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td align="center"><img src="http://www.h2htpe.com/Images/H2HLogo.png" alt="H2H The Perfect Element" border="0" usemap="#Map" longdesc="http://www.h2htpe.com" /></td>
      </tr>
    </table>
    <table width="98%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td class="Arial" style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt;"> </td>
      </tr>
    </table>
    <span class="Arial"><span class="Arial">Sean Solan<br>
    President, H2Htpe</span></span>
    <p><a href="https://www.facebook.com/h2htpe" target="_blank"><img src="http://www.h2htpe.com/Images/Facebook.png" alt="Facebook.com/h2htpe" width="35" height="35" longdesc="http://facebook.com/h2htpe" /></a><a href="https://twitter.com/#!/H2Htpe" target="_blank"><img src="http://www.h2htpe.com/Images/Twitter.png" alt="twiiter.com/h2htpe" width="35" longdesc="https://twitter.com/#!/H2Htpe" /></a></p>
    <map name="Map" id="Map">
      <area shape="rect" coords="182,147,275,156" href="http://www.h2htpe.com" target="_blank" alt="www.h2htpe.com" />
    </map>
    </body>
    </html>

    2. I'd like the 2 bottom graphics to be immeadiately underneath the signature.  As it is the graphics are a few lines below and I can't get them to move up without affecting the signature text.
    Add some inline css (style="margin: 0; padding: 0;") to the <p> tag that your images are insert in: (see below)
    <p style="margin: 0; padding: 4px 0 0 0;"><a href="https://www.facebook.com/h2htpe" target="_blank"><img src="http://www.h2htpe.com/Images/Facebook.png" alt="Facebook.com/h2htpe" width="35" height="35" longdesc="http://facebook.com/h2htpe" /></a><a href="https://twitter.com/#!/H2Htpe" target="_blank"><img src="http://www.h2htpe.com/Images/Twitter.png" alt="twiiter.com/h2htpe" width="35" longdesc="https://twitter.com/#!/H2Htpe" /></a></p>

  • Adding dynamic variables to Email Templates

    Apart from the default 35 email parameters available in OIA, how to add other dynamic variables to Email Templates?

    You would add that to your form processing/email formatting
    script,
    apparently built into this page -
    <form action="/piano-Inventory.asp"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Paevo Kelley" <[email protected]> wrote in
    message
    news:ghol30$rqm$[email protected]..
    >I am working on a site in which I would like to list an
    inventory of
    >products
    > and, which one is clicked on, precise model would appear
    in the email
    > message.
    > Such as on this page
    >
    http://www.faustharrisonpianos.com/piano-Inventory.asp
    >

  • E61 - How can I set up an email template with prfi...

    I need to set up my e61 with a default email template that includes company information and disclaimers. Also I need the bcc field to contain a pre-defined email address. Is this possible?

    Hi there
    I want to set up an email marketing campaign - i have a database of approx 200 email addresses...

  • Where are email templates in Photo that allow varying # of photos from one to ten previously in iPhoto?

    iPhoto had a preference to use iPhoto to send photos or regular email.  In iPhoto preference, I used to summarize photos into an email template that allowed for a varying number of photos from one to ten to send off to participants as a remembrance.  The number of photos in each template was not set with fixed placeholders but would adjust and size to the number of photos selected for the email card.  Most "cards" were plain to meet a variety of needs and had place and style for headline, a sub-head, and either photo captions or a short text box to summarize the remembrance to be shared.  It was a quick way to summarize and share a set of photos in a multi-photo page via email. No printing required. Many friends were glad to receive these "cards" and even forwarded them to relatives overseas to share. Unfortunately, when Apple quit supporting iPhoto, the photos were blurry  no matter what photo size was selected.
    The selections in Photo appear to be text centric with # photos fixed at one, three or eight.  If there are more that the fixed number, on the template, the photos are dropped (not shown).  If there are fewer photos than template, the placeholders cannot be eliminated.  Then tons of space for text.  What are my options now?

    Each time you use iTunes to sync photos from a computer, it sets the non-Camera Roll photos on the phone to match the current settings/selections on the Photos page of iTunes. For example, if you have previously selected 2 folders or albums to sync from the computer and want to add a 3rd, you need to select all 3 before you sync. That will add the 3rd folder/album and will also add any new photos that are on the computer in the original 2 albums. It really isn't what I would think of as a sync since it is one-way -- it will move photos from the computer to the phone but will not move in the other direction or have any other affect on the photos on the computer. It is a sync in the sense that it will keep the selected folders on the phone in sync with those folders/albums on the computer (i.e., if you add to or delete from the selected folders/albums on the computer then the same changes will be made to the phone).

Maybe you are looking for

  • Configuração de áreas de avaliação para crédito de PIS e COFINS

    Pessoal, boa noite! Estou com um problema aqui no projeto onde estou a respeito da configuração de áreas de avaliação para crédito de PIS e COFINS. De acordo com as definições do cliente, o crédito não será realizado na aquisição e sim na depreciação

  • Can't find photo gallery in files

    I want to transfer/copy my photos and videos from my internal storage on my Razr Maxx HD. When I go into files, I don't see them anywhere! I have photos from messaging, but not the photos/videos that I took with my phone.

  • EJB not bound

    Hello Recently i faced an Exception when i run the client that "EJB not Bound exception". It only comes on Entity bean when i run any session bean i run porperly i don't know whats happen with Entity bean plz guide me on that i m using Jboss server.

  • Imaging Query -- Urgent

    Hi All, I am involved in the development of an airline revenue accounting software which needs an imaging interface to capture the passenger tickets. The product is being developed in Java Swing which is almost completed except for this imaging inter

  • How to add basic formated signature?

    I use a basic signature for all of my devices. My name is coloured with my job title in bold then another line with my mobile and email address, yet when I try to use the email signature on my iPad all I have is basic plain text? Is there a way that