Enabling Email template in Web UI

Hi
One of the requirements with respect to email templates is that the on the web UI screen, say for example, the service order screen, there would be a button on the screen(for Emails), on the click of which the user views an email template with auto filled data mapped to certain fields and standard data available in template.
The user can then edit the email and then send the same to the customer.
Any inputs on the approach would be appreciated.
Regards
Ankit

Hi Ankit,
I think we can use mail forms in WebUI for this.
CRMD_EMAIL form is now available in WebUI when we login using Marketing Manager Business Role (and in others as well).
Templates can be created and you can send out mail sfrom the webUI screen itself.
Regards
Ron.

Similar Messages

  • 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

  • How to enable email notification in OIM 11g

    Hello,
    I am currently working in a stock 11.1.1.3.0 environment, and am trying to enable email notifications when a user requests to be provisioned to AD.
    The default approver is Xelsysadm, and I have put my email address in this account's slot. However, I'm not receiving any emails during the request process.
    How do I enable emails to be sent to the approvers?
    Thanks!

    try below
    1. set the value of system property RequestNotificationLevel=1 (1=enable, 0=disable) bydefault it is 0
    2. create An IT resource of name "Email Server" and type "Mail Server" must be configured for sending notifications
    3. provide the server detail(IP address will be enough) in above it resource
    there are the default request template "Request Creation" which will trigger in this scenario.
    for configuring custom notification template and details follow below links
    http://docs.oracle.com/cd/E28389_01/doc.1111/e14308/notification.htm
    --nayan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 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

  • Hi, I have had an LG Octane for 4 years and loved it. I used it for email, surfing the web and facebook. But 6 weeks ago I stopped getting text messages, I could send but not receive.  I was told it was just worn out.  So I ordered another Octane and it w

    Hi, I have had an LG Octane for 4 years and loved it. I used it for email, surfing the web and facebook. But 6 weeks ago I stopped getting text messages, I could send but not receive.  I was told it was just worn out.  So I ordered another Octane from ebay, and it wouldn't connect to the internet. I was told by Verizon that the software had been changed.  So I ordered a NEW in Box Octane and I am having trouble with that too. Bing won't work, nothing will work that will enable me to download Verizon Opera mini that still works on my old phone. I have a smart phone with another number but I LOVE the Octane for daily use. Why will my old Octane work but I can't get a NEW one to.  Verizon guys are stumped too:( Please help!!  Thanks!

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • 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 <$wfSetIsNotifyingUsers(0)$>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

  • Email templates using data from iWork Numbers spreadsheet

    As a photographer, when I get a call from a client to book a shoot, my first step is to open my bookings spreadsheet in Apple's Numbers and input the client's info into pre-determined columns: name, phone number, job date, job scheduled arrival time, job address, job city, travel distance, details regarding the shoot, and then I have a list of columns that specify costs (cost for work, taxes, travel, etc--automatically calculated via functions in spreadsheet).
    Immediately after I insert this information into the bookings spreadsheet, I open another file (a text file)--a text template I created to confirm bookings--and fill in the blanks using the information from the spreadsheet. Once that info has been filled out, I copy and paste the entire text file into an an email and email it to the client for his confirmation/records. The email template text (txt) file I use is included below.
    Question: Is it possible to create a script that will read the specified row in my Numbers booking spreadsheet (ie, the row where I input the information in the spreadsheet) and have the information inserted into the separate text confirmation template (apple pages or text or email?) at specified areas within the text? If so, can someone help me make something like this? Here's the template I use:
    Hi clientnamehere
    It was nice chatting with you. And thanks again for choosing us for your photography needs.
    For your convenience, I've outlined the details of your booking below. Please ensure everything looks OK:
    _Order Confirmation_
    As discussed, we've booked the following services:
    - [deletethose_that_don't_apply_incl_thisnote]
    - real estate photos
    - upscaling photos
    - virtual tour
    - hd video tour
    - customizable slideshow
    - floor plans
    - brochure design, print, & delivery
    - virtual staging
    - photoshop touchups
    For the following location:
    - property_address, city, postal_code
    On the following date and time:
    - month_date at time
    Note: If any of the above is incorrect in anyway, please email us asap.
    concision edit
    Message was edited by: thebigother

    Let's begin with your first question:
    I've tried to change the "Template.txt" file into an rtf so that I can apply bolding and underlining to certain sections (ie, bolding to the entries like client_name, job_date, etc... and underlining to the "Steps"), and I changed the script from Template.txt to Template.rtf to reflect this change... but when I run a script I get a bug... is there any way to use an rtf file in place of the txt?
    The following script should work with an RTF file, provided you don't mind using [GUI Scripting|http://www.macosxautomation.com/applescript/uiscripting/index.html] (in blue below). Before running the script, you will have to enable the Accessibility Frameworks by clicking the checkbox labeled "Enable access for assistive devices" in the Universal Access System Preference pane.
    *set theTemplate to POSIX file (POSIX path of (path to desktop) & "Template.rtf")*
    *tell application "Numbers"*
    *   tell table 1 of sheet 1 of front document*
    *      set theValues to value of cells of row 1 of selection range*
    *   end tell*
    *end tell*
    *tell application "TextEdit"*
    *   open theTemplate*
    *   set theText to text of front document*
    *end tell*
    *set theText to replace("clientnamehere", item 1 of theValues, theText)*
    *set theText to replace("property_address", item 2 of theValues, theText)*
    *set theText to replace("city", item 3 of theValues, theText)*
    *set theText to replace("postal_code", item 4 of theValues, theText)*
    *set theText to replace("month_date", item 5 of theValues, theText)*
    *set theText to replace("at time", "at " & item 6 of theValues, theText)*
    *tell application "TextEdit"*
       activate
    *   tell application "System Events"*
    *      keystroke "a" using command down* -- “Select All”
    *      keystroke "c" using command down* -- “Copy”
    *   end tell*
    *   close front document without saving*
    *end tell*
    *tell application "Mail"*
       activate
    *   make new outgoing message with properties {visible:true}*
    *   tell application "System Events"*
    *      keystroke tab & tab & tab & tab & tab* -- five 5 text fields at most
    *      delay 0.25* -- adjust if necessary
    *      keystroke "a" using command down* -- “Select All”
    *      keystroke "v" using command down* -- “Paste”
    *   end tell*
    *end tell*
    *on replace(X, Y, theText)*
    *   set P to offset of X in theText*
    *   set L to length of X*
    *   tell front document of application "TextEdit"*
    *      delete (characters (P + 1) through (P + L - 1))*
    *      set character P to Y*
    *      return its text*
    *   end tell*
    *end replace*

  • Designer6i: About Page template filename Web PL/SQL Applications

    how can change the About Page template filename Web PL/SQL Applications
    Thank!!!
    my e-mail is: [email protected]

    Hi,
    Have you upgraded Apex?
    I assume you use XE EPG.
    Have you grant execute privilege on procedure to DAD user ANONYMOUS?
    GRANT EXECUTE ON WOLF_22.HELLO_WORLD TO ANONYMOUS;Have you changed wwv_flow_epg_include_mod_local that it allow execute WOLF_22.HELLO_WORLD?
    And write schema.procedure at upper case to function.
    If you have not upgraded Apex, run as SYS or SYSTEM
    CREATE OR REPLACE function FLOWS_020100.wwv_flow_epg_include_mod_local(
        procedure_name in varchar2)
    return boolean
    is
    begin
        -- Administrator note: the procedure_name input parameter may be in the format:
        --    procedure
        --    schema.procedure
        --    package.procedure
        --    schema.package.procedure
        -- If the expected input parameter is a procedure name only, the IN list code shown below
        -- can be modified to itemize the expected procedure names. Otherwise you must parse the
        -- procedure_name parameter and replace the simple code below with code that will evaluate
        -- all of the cases listed above.
        if upper(procedure_name) in (
              'WOLF_22.HELLO_WORLD'
        ) then
            return TRUE;
        else
            return FALSE;
        end if;
    end wwv_flow_epg_include_mod_local;
    /Regards,
    Jari

  • 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

  • Where's the best place to store email templates?

    Hi all;
    In a web app I store all my email templates in a files folder in the web app. Can't do that with a worker in a cloud service - no files. So where's the best place to store them? In a BLOB? And if so, is there a way to have files in my project get automatically
    written to BLOB entries when I publish?
    thanks - dave
    What we did for the last 6 months -
    Made the world's coolest reporting & docgen system even more amazing

    Hi,
    I think we could use azure blob to save files.
    >>is there a way to have files in my project get automatically written to BLOB entries when I publish?
    If you choose azure cloud service, you could write the upload code at role onstart method. If you choose Azure website, please consider use azure webjob to do this, refer to
    http://azure.microsoft.com/en-us/documentation/articles/websites-dotnet-webjobs-sdk-get-started/ for more details about webjob.
    Regards

  • OIA Email Template

    Hi,
    I'm trying to create a custom email in Oracle identity analytics. As far I understand, it seems to be there a restriction in OIA
    a) You can't use any variable outside from the pre-defined 35 variables of OIA.
    Is my understanding rite?
    If so then can we atleast deploy a Java class in OIA, wherein using Java mail i would send a custom email.
    The reason I'm asking this is that, i need to send a email to BMC, in turn BMC would read this email and create a ticket.
    If anyone has faced this similar kind of situtation or could share you suggestion, it would be really appreciated.
    Thanks,
    Prem.G

    An easy way is to open one of the existing templates from the
    Outlook/Stationery folder and modify to your liking and save
    as a different
    name.
    You can easily create your own stationery using standard
    HTML. If you use
    styles, I find it's best to keep in line. Make all of your
    graphics
    absolute referenced (
    http://www.yoursite.com/imagename.jpg)
    and keep the
    design simple. Keep in mind, too, not everyone can (or wants)
    to receive
    HTML email.
    If you need to know how to install the stationery, I've got
    some
    instructions on our site you can check out:
    http://www.web-eze.com/tutorials/outlook_stationery.html
    Kelley Rao, Webeze
    Website Planning Guide for Developers
    http://www.web-eze.com/dwpg.html
    "Tal" <[email protected]> wrote in message
    news:ea556t$1bg$[email protected]..
    > my client wants an email template to match (but
    simplified) their
    > website - what's the best way to approach this? I think
    it will primarily
    > be used through outlook (not exp)
    >
    > Thanks

  • Enabling email fields

    Hi gurus i would like to know how can i enable the e-mail fields from interaction center webclient
    From interaction center on line i dont have any problem , but when i try to send an email in the web client the fields of the email are unaviable.
    any idea?

    Hi alejandreo,
    There is a "New" button right at the bottom of the e-mail screen .. Is that active ?
    If it is active and on pressing you still see the uneditable fields then we may have to check the configuration for the E -mail function profile assigned in your ICWC profile
    Regards
    Raj

  • Using Mac email program with Web-based email

    I'm wondering if there is a way to use the Mac email program with Web-based email (like Gmail, etc).
    If this is possible then how can I set up my system.
    Thanks much.

    Yes you can use gmail using Mail software.
    Following is prosidure:
    1)-Login to ur gmail A/s
    - Go to settings click Forward POP Settings the click Enable POP and click Save.
    2) open mail-POP settings
    -Type your Email address, Password,
    Incoming server:pop.gmail.com
    SMTP server: smtp.gmail.com
    Type and give the Bolded server in specified path
    and follow the instruction.

  • Can't Enable Email

    I'm going to try to post this here because I'm really needing to access my email.
    Hi all, our site went live last night through BC but now I can't access my email account.  We have 2 email accounts and for some reason, on my account, the ENABLE EMAIL ACCOUNT button is greyed out.  I cannot access my mail through web mail, it says my credentials are incorrect, and I can't set it up through mac mail.  When I set up my email account, I checked "enable email" and hit save many times before moving on but then it doesnt' enable it and now the checkbox is greyed out.  
    I've read through many of the discussions and it looks like this has been an issue in the past but no resolutions.
    Can someone please help ASAP?  This is a business and it's very important for me to be able to get email.
    I've tried signing in using the other user and deleting my account but it said something about, since this user was associated with this account at one time, the information can't be changed.  What's the point of deleting someone then?
    Can someone please help?
    Sincerely,
    Annette    

    Hi Sidney, I was online with Adobe Chat yesterday and they had to refer it to their "level 2", not sure what that is but they were finally able to resolve the issue early this morning.  This is a portion of the email I received from them, stating what they needed to do:
    It appears that the issue here was related to the fact that you did not have the non-www record for the domain xxxxxx.com. I have since added xxxxxx.com to forward to the default hostname, which is www. xxxxxx.com. Once the non-www record was re-added, it was then possible to navigate to Site Settings > E-Mail Accounts and view the current email users and thus add [email protected] as a mail user.
    Thanks for responding, Sidney.
    Sincerely,
    Annette

Maybe you are looking for

  • Transferring VHS to DV

    After trawling the forums I cannot seem to find exactly the answer I require so am starting a new post - aoplogies. I have a Canon mv450i Digital Cam corder with firewire DVin/out and according to spec an analog in/out jack. I normally use this jack

  • Problem with SQL Query in Excel VBA

    I am trying to retrieve data from a SQL table using Excel VBA.  The query will only return data from the first field in the query.  this is the code I am using: objGroupConn.Open Set objGroupCmd.ActiveConnection = objGroupConn objGroupCmd.CommandText

  • Getting error message Thru BAPI: BAPI_INCOMINGINVOICE_CREATE

    Hi All, Could anyone please investigate into this error and give me the possible answer. We're using ECC 6.0 Getting error while doing Invoice Posting thru BAPI/Function Module: BAPI_INCOMINGINVOICE_CREATE Error Messages 1. M8 376: Enter goods receip

  • Nodes not being created?

    I am having a problem with my laptop. I had this issue with my USB stick which was fixed by manually creating nodes (discussed here http://bbs.archlinux.org/viewtopic.php? - highlight=). However, upon trying other usb devices that work just fine on m

  • Does the Sony DSC-H90 have the option to save pictures in different folders?

    Hi, I own an older Sony Cyber-shot, and was wondering if the Sony Cybershot DSC-H90 has some of the same features.  What I really want to know is if I create multiple folders to save pictures in?  On mine, you hit the "home" button, scroll across to