Email Template issues

Hi Gurus,
IHAC who has a Provisioning Account Complete email template assigned on Notification tab for Create User task.
The email template is a Provisioning Related type and they are using some Requested Related tags.
At the Recon events, after createUser task is complete the email has been sent as below.
No information is got from OIM and the tags are displayed. The customer needs to have login information sent by email.
Is anything wrong?
SUBJECT
OIM - Solicitação (AD RedeCorp) <Request Information.Request ID> - Sucesso no aprovisionamento do usuário <User Profile Information.User Login>
BODY
Prezado Gestor,
A conta do funcionário no <Object Information.Object Name>, foi criada com sucesso.
Abaixo os dados para acesso.
Nome: <User Profile Information.First Name> <User Profile Information.Last Name>
Usuário: <Process Data Information.User ID>
Senha: <Process Data Information.Senha Email>
Em caso de dúvidas, entre em contato com a Central de Serviços através do ramal 1111 ou via celular pelo *1111.
TiA,
Carlos

Thanks Kevin for the prompt reply.
In this case, Should not the tags for request data be displayed in blank?
Another question: Do not the tags below work for account provisioned thru recon event?
Nome: <User Profile Information.First Name> <User Profile Information.Last Name>
Usuário: <Process Data Information.User ID>
Senha: <Process Data Information.Senha Email>
Thanks again,
Carlos
Edited by: user12295533 on May 10, 2011 2:52 PM

Similar Messages

  • 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

  • Email Template Issue in MS CRM 2015 Online

    Hi,
    We recently upgraded the CRM form 2011 on premise to MS CRM 2015 online.
    We are facing the issue in Email Templates navigation in MS CRM 2015 online version as mentioned below.
    SETTINGS-->TEMPLATES-->Email Templates getting the following error message.
    I have deleted all the email templates in DEV instance but still this error occurred.
    Please help how to resolve this issue. Its very urgent.
    Yadav

    Hi,
    Please let me know if anybody aware of this issue.
    Yadav

  • Email Alert Template Issue - List Alerts (Alert Me) emails not using customized XML alert template

    We 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 using the "Alert Me" feature. We 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 "alert me"
    function they received the customized email as intended.
    We needed to auto-subscribe users to the email alerts so what we did was use a powershell script to add users to the alert subscriptions using the script shown 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 we ran the script and added the users and restarted the service, all users who were auto-subscribed via this method get the email without the customizations that were done in teh custom alert template.  All users who manually subscribed on their
    own to the list using the "Alert Me" function would get the customized email.
    Does anyone know why users who manually subscribe to the alerts get the customized email, and users who were auto-subscribed using the powershell script do not get the customized email and get the standard generic email template?

    Hi  ,
    According to your code, it create a new alert using SPUser.Alerts.Add() method. For this method, it will create a new alert based on the predefined alert template by default.
    If you only assigned the custom alert template to the list, users who manually subscribe to the alerts get the customized email, but users who were auto-subscribed using the PowerShell script get the standard
    generic email template.
    For your issue, you can set the new alert ‘s alert template:
    http://social.technet.microsoft.com/Forums/en-US/1b19c12f-fc37-48cf-8b59-6c09f095dc23/custom-alert-email-templates-issue-list-alerts-emails-not-using-customized-xml-alert-template?forum=sharepointgeneralprevious
    Here is a good blog you can have a look:
    http://blogs.msdn.com/b/sharepointdeveloperdocs/archive/2007/12/07/customizing-alert-notifications-and-alert-templates-in-windows-sharepoint-services-3-0.aspx
    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

  • 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 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

  • Images in Email Template

    Images in Email Template
    I created an email template and inserted two images in the body of the email. 
    The images were uploaded to the server.  Once uploaded, the images were placed inside the body of the email.  When the email was opened inside my email client, the images did not appear.
    Has anyone been able to successfully insert an image (or file attachment) in an email template and have it appear properly in their email client?

    Hi David -
    We use images in email without issue, but we don't include the actual images in the emails.  We store the images on an internal web server and simply reference the images stored there.  That web server is on a list of "trusted" servers so the images automatically load for our users (Our settings are that "untrusted" links to images are not automatically loaded in Outlook).  I actually do the same thing with a style sheet that all of our email templates reference.  That way I can globally

  • Does IIS Reset stop/start or IIS Restart fix template issues? See photos.

    I have been having major template issues over the past couple of weeks where several templates give me access denied. I have been in contact with Microsoft about the issue, but after 2 days and 5 hours on the phone, the issue still cannot be resolved.
    I then tried to use old sites that had the templates and "Save Site as Template". The new template that was saved are stored in the Solutions Gallery (template is "activated"). 
    I ran the create new site process and chose the new template that I saved. 
    The template looked like this last week,
    Now the template looks like this today.
    In between last week and this week, I did an SP2 installation to Project Server 2010/SharePoint 2010. 
    I also did an IIS Reset /stop and IIS reset/ start
    I also went into the IIS Manager on the central administration server and clicked "Restart".
    This is a very time sensitive issue, and want to know how I accidentally resolved the issue. It's very weird that any of these above would change the template, but somehow it did. I do not want to reset IIS if I do not have to. If anyone has any idea on
    how this could have gotten resolved it would be greatly appreciated.

    Hi TR,
    Not sure if iisreset always fixes this issue.
    Sorry for my misleading description, I thought that there was a possiable that some js/css files weren't loaded in the browser randomly for new site created based on the template, so I think maybe some js/css files customized
    and referenced in the orginal site (or in new site) may need to be checked-in and published.
    Now I think is it possible that the issue is related to js/css load sequence in browser? or is it browser compatible issue(maybe not based on iisreset)?
    Or you may try add new site in trusted site in IE see if it helps.
    Also check if browser F12 developer tool could provide some useful information.
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Email Templates localization

    Hi,
    Is there any elegant way to have localized Email Templates (in multi national environment)?
    Language Pack doesn't help in that case even in single languege (different than English).
    Borys Majewski, Identity Management Solutions Architect (Blog: IDArchitect.NET)

    Hi,
    I translated all Email Templates to desired languge. However they are using [//RequestParameter/AllChangesAuthorizationTable]   to display changed attributes. Issue here is that names of these attributes are displayed in English ...
    Any hints how to change it?
    Borys Majewski, Identity Management Solutions Architect (Blog: IDArchitect.NET)

  • Eloqua Email template are not Android friendly?

    The Mobile email templates in Eloqua are not Android friendly.

    It seems that after updating to 7.0.3, this issue is back. Both the template for the signature in the localization content (English) and the standard location for changing this are what we wish them to be, but emails going out still read the default Novell Service Desk, etc...
    Any ideas on how to correct this?
    Thanks,
    LK

  • EMOD - problem with email templates

    Hi,
    I have 2 questions wrt EMOD:
    1)
    I have a newsletter in html format. When I save this as an Email template, the images are not imported by default. I have to import the images individually and while setting up the email template for the campaign, I have to insert each image individually. If I have to use the same template for another campaign, I would be required to do the entire exercise again. This is quiet troublesome. I was wondering if there was an easier approach to this or am I missing something?
    2)
    I have got an email template in Japanese. I am able to import the template, but when I use the same in the HTML editor, instead of the Japanese characters, I see junk characters. I am unable to identify what is going wrong.
    Can someone help for these issues?
    Thanks,
    Ady

    There is a "View Source" button. Click on it and paste the source code in there. Click on the "View as WYSIWYG" button, which is on the right of the "view Source" button, to see it in the editer.

  • 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

  • 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?

  • If/Then Logic in Email Templates (CRM 2015)

    Is it possible to use If/Then logic in an email template, so that we can display certain portions of the email template, based on data from the Account record?
    If not within CRM, is there an ISV product that performs this function?

    Hi Talina,
    Functionally, how are these e-mails sent at the moment?
    You could achieve this by creating a workflow with your logic, and depending on the If's/Else's, create an e-mail message with the intended templates - then include the info you pretend on these templates.
    The workflow would have to run on-demand or triggered by an event on the entities.

Maybe you are looking for