Need Help of Sending Email Notification when new task assigned

Hi all,
How can we send a email alert notification for existing lead or new lead, when a new Task is assigned to particular person. Here in my requirement daily n number of tasks assigned to executives. So how can i send the same.
Thanks in advance.
Regards,
Ratan

Hi Ratan,
It is not clear from your question whether you are trying to trigger the email notification for the task or the lead, but it doesn't matter. You'll need to write a WF for the Lead/Task and trigger it when a new record is created and then in actions select the email notification.
Best of luck

Similar Messages

  • Need help with sending email notifications via OEM

    Hi Folks,
    Objective: To setup email notification if the listener or the database instance goes down
    Version: 10 g Rel 2
    I have setup the email from OEM. I have verified the configuration by successfully sending myself test emails.
    I have configured the schedule (7 days a week, from 1 A.M to 11 P.M)
    I have also configured the out-of-the package alerts so that I will be notified if the listener goes down
    However, once I manually stop the listener, no email is sent out?
    Can somebody spot any obvious steps that I might have missed? Or if somebody can suggest any debugging steps that might help to resolve the issue ?
    Thanks in advance.
    rogers42

    Hi Roger
    Ok, tell me
    1. You have a user like DBA and configurate this count for recive email?
    2. When You try send email from Console You recive this email? Your prove server email
    You should recive this mensagge
    Este mensaje de correo electrónico de prueba de Oracle Enterprise Manager indica la configuración correcta de la dirección de correo electrónico y del servidor de correo.

  • Send email notification when my question is answered by friends

    Send email notification when my question is answered by friends

    babowa wrote:
    This is not FaceBook.
    Thank goodness.....
    Could be worse. It could be Twitter

  • Send email notification when the baseline and actual values are different in project

    Hi
    I am working with MS Project 2013 and Project Server 2013.
    I need to the send email notification to the program manager (or to a user) whenever the project manager changes the task finish date for a task. Comparison should happen with the baseline finish and the difference needs to be updated to the Program Manager
    over mail.
    How to configure/customize email notification for changes in MPP.
    Please suggest.
    Regards,
    Sudhir

    If you are not having developer skills it will be complicated for you.
    You need to create event handler by code, as in the below link:
    http://msdn.microsoft.com/en-us/library/office/gg615466%28v=office.14%29.aspx
    Then compare your values and finally send email by code.
    Twitter : @MShoubaki | http://jo.linkedin.com/in/mshoubaki

  • Send email notification when a concurrent request completes with Error

    {color:#0000ff}I need to setup the system such that when a concurrent request completes with the status "Error", generate/send email notification to an application user. Please advice if you know how to configure the system to accomplish this.
    Note: If the concurrent request completes with status "Normal" or "Warning", do not send/generate email notification to the application user.
    Thanks.
    {color}

    We do what amOx does. I made a concurrent program that calls a sql script, and emails me of errored jobs. It is more convenient than logging in each day. I ran this twice daily, and the sql checks for the previous 12 hour time slice (ie - twice a day run).
    ..colin

  • Send Email Notification when comment blog in Sharepoint 2010

    Hi,
    Anyone can help me, when i comment on the blog, then send email directly ?. According to this link http://www.sitefinity.com/devnet/forums/sitefinity-3-x/general-discussions/blog-comment-notification.aspx 
    Its make some development or modifications, beside that is there any other way to do that without making modifications? probably just setting up in sharepoint admin?
    Please advice,
    Regards

    Hi
    I just found out that the the blog comments are stored in a list
    htp://yoursite/Blog/Lists/Comments/AllComments.aspx
    So you can write a workflow to send an email when a new item is created in this list.

  • Need help for sending email s

    Hi
    I have written a procedure for send an email notification to others.(within org). procedure successfully compiled. When I execute this procedure..I am getting email like this...!!! Every thing coming in the subject line only. Please advise..!!
    test From: [email protected]: 15-DEC-2011 02:06:29To:
    [email protected] Hi Rekha
    test -- subject
    Hi Rekha -- body
    CREATE OR REPLACE
    PROCEDURE xxgw_email_notf(p_mail_subject IN VARCHAR2,
                              p_mail_bdy  IN VARCHAR2,
                              p_mail_body in varchar2,
                              p_from_email in varchar2,
                              p_to_email in varchar2)
    is
    L_MAILHOST varchar2(64) := 'something.local';  -- for security purpose I have given like this.
    L_FROM varchar2(64) := P_FROM_EMAIL;
    l_to VARCHAR2(64) := p_to_email;
    l_mail_conn UTL_SMTP.connection;
    --l_subject           VARCHAR2(100);
    begin
    l_mail_conn := UTL_SMTP.open_connection(l_mailhost, 25);
    UTL_SMTP.helo(l_mail_conn, l_mailhost);
    UTL_SMTP.mail(l_mail_conn, l_from);
    UTL_SMTP.RCPT(L_MAIL_CONN, L_TO);
    --UTL_SMTP.data(L_MAIL_CONN,'Hi Testing');
    --UTL_SMTP.DATA(L_MAIL_CONN,'Sahithya Just test now');
    UTL_SMTP.OPEN_DATA(L_MAIL_CONN);
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'Subject: '||P_MAIL_SUBJECT||CHR(13));
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'From: '||P_FROM_EMAIL||CHR(13) );
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'Date: ' || TO_CHAR(sysdate, 'DD-MON-YYYY HH24:MI:SS')|| Chr(13));
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, 'To: '||P_TO_EMAIL||CHR(13) );
    --UTL_SMTP.WRITE_DATA(L_MAIL_CONN, ''||CHR(13));
    UTL_SMTP.WRITE_DATA(L_MAIL_CONN, P_MAIL_BDY||CHR(13) );
    UTL_SMTP.write_data(l_mail_conn, p_mail_body||Chr(13) );
    UTL_SMTP.close_data(l_mail_conn);
    UTL_SMTP.quit(l_mail_conn);
    EXCEPTION
    WHEN utl_smtp.PERMANENT_ERROR THEN
    fnd_file.put_line(fnd_file.log,'Permanent Server Error');
    dbms_output.put_line('Permanent Server Error');
    WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    fnd_file.put_line(fnd_file.log,'Transient Server Error');
    dbms_output.put_line('Transient Server Error');
    WHEN UTL_SMTP.INVALID_OPERATION THEN
    FND_FILE.PUT_LINE(FND_FILE.log,'Operation is invalid');
    DBMS_OUTPUT.PUT_LINE('Operation is invalid');
    end xxgw_email_notf;Please advise me where I did mistake..!!!
    Regards
    Sa

    Hua Min,
    No offence, but can you please stop posting everything in blue Times New Roman font, especially when it's code, as it makes things difficult to read (especially on some browsers)
    Please read {message:id=9360002} and post code/data using the appropriate {noformat}{noformat} tags.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Script to send email notification when sql server stops..

    Hi,
    I am looking for a script through which I can monitor sql server service status and if it down for any reason, I want to send email to Dba team.  How to achieve this? Did anyone has already done similar kind of monitoring?
    Again, I am not looking for any 3rd party monitoring system like SCOM etc.. I looking for a batch file or script outside sql which can solve this.
    Any help would be greatly appreciated.
    Thank you.

    There are two ways to do it:
    1). There is a job option wherein you can put the alert message and then in schedule option, select to alert you only when Sql Agent Services get restarted. So this way you will come to know when Sql Agent Services got restarted.
    2). From any centralize\third server apart from your database server\host, you can put a job to execute almost around every 5 minutes to check service status and then call a batch file which will call OSQL code to execute sql code for sending alert
    based on the message content you want to like below:
    Scripts below, even you can tweak more on this as per your environment requirement and even you can merge some scripts to make one out of two or similar, however keeping each separate one helps to track scripts.
    First Batch File with Name: ServiceStatusCheck.bat
    with below content
    Echo "Checking Service Status"
    :Query
    FOR /F "tokens=4 delims= " %%A IN ('SC QUERY "XXXXXXXXServiceNametobeCheckedPutHere" ^| FIND "STATE"') DO SET status=%%A
    IF "%status%"=="STOPPED" GOTO Shootout
    :Shootout
    'email for success in first attempt
    'Put path of batch file
    "D:\Script\Successemail.bat"
    Exit
    Second Batch file with below content which will call Sql file to send alert: File Name: Successemail.bat
    ECHO "Send Email Alert"
    OSQL -E -S XXXXXXXXX -i "D:\Script\Successemail.sql"
    ECHO "Done"
    Exit
    Third Sql File to send email: File Name: Successemail.sql
    Declare @bodyT varchar(200)
    Set @bodyT  =
    'Service was found in stopped status and Date & Time::'
     +replace(convert(varchar(20),GETDATE(), 102),'.','/')
     +'::'
     +convert(varchar(20),GETDATE(), 108)
    EXEC msdb.dbo.sp_send_dbmail
        @profile_name='Profilename',
        @recipients = '[email protected]',
        @body  = @bodyT,
        @subject = 'Service was found in stopped status, Check Details!!'
    GO
    Santosh Singh

  • Need help: Error sending Email from 6270

    When I try to send a Email message using the handset in-built mail client, the following error is reported on handset screen-
    Stop "String index out of range: -2" with only possibility of "Dismiss" button.
    I have done the personal config settings for a local SMTP and POP server that does not use SSL since 6270 does not support it. I am able to retrieve emails, use browser but sending mail fails with the error above.
    Please help since Nokia-Care replies are not worth mentioning here. Their service centre in Bangalore-India is pushing the issue to operator. But operator (Airtel) is not to blame. Airtel is not blocking access to the servers (local as well GMAIL) since I am able to access (send and recieve) these servers from Outlook-PC that connects via the USB cable to this handset. Either settings are not correct or it is a bug in 6270.
    If anyone has been able to use 6270 to send emails, please send me your settings minus your passwords ofcourse. It will help me try again if I missed something.
    Thanks in advance
    Anupam

    Hi all,
    I am also sharing the settings that I did on the handset. BSNL server does not use a secure connection. I had used "@" in the settings but in test below it is shown as
    " AT " for preventing spam.
    Let me know if you have any sugeestion.
    Anupam.
    Settings -> Configuration -> Personal Config. settings ===
    @My bsnl
    Account Name: My bsnl
    My name: Anupam
    Email Address: anupams_blr AT dataone.in
    Include Signature: No
    Reply to address: anupams_blr AT dataone.in
    SMTP secure login: Disabled (Have also tried other 3 options)
    SMTP user name: anupams_blr AT dataone.in
    SMTP password: ********
    Outgoing SMTP Server: smra.sancharnet.in
    Outgoing SMTP port: 25
    Use preferred access point: Yes
    SMTP access point: (grayed out)
    Incoming server Type: POP3
    Incoming mail settings:
    Retrieve emails: 30
    POP3 secure login: Disabled
    POP3 user name: anupams_blr AT dataone.in
    POP3 password: *******
    Incoming POP3 server: smma.sancharnet.in
    Incoming POP3 port: 110
    Use preferred access point: Yes
    POP3 access point: (grayed out)
    =======================================================

  • My question disappeare​d - need help with sending email - option is not there

    can not send email from blackberry from my aol or hotmail accounts. I can send from my work email .???

    Didn't disappear, it's right here, and answered.
    no option to send email on aol or hotmail
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Using Alert Framework to send email notifications when Process Chain fails

    Hi Everyone,
    I've configured ALRTCATDEF in Solution Manager, selected the alerting option for Process Chains in - RSPC > Attributes > Alerting, but it looks like whenever any process chain fails, an email notification will be sent to the same recipients.
    Is there anyway to have an ALRCATDEF - alert category for different process chains, so that different recipients receive notifications for different Process Chains.
    Thanks,
    Ken

    Interesting....I was actually hoping for different recipients for different process chains.
    E.g. for our
    CRM process chain - Support Team 1
    FI process chain - Support Team 2
    and so on and so on.
    I think the only way may be creating a custom process type and implementing a class for this process type that calls function SALRT_CREATE_API. Then adding this process type to the process chain, with a different variant for each.
    However if anyone knows a way to do this in a SAP standard way using the Alert Framework, that would be great.
    Cheers,
    Ken

  • Send email/notification when server shutting down?

    Is it possible to send out a notification via e-mail (or maybe even text) to all the users listed in the user accounts when the server is shutting down? We have been experiencing some severe weather here and I need to shut the server down on occasion when the power starts to gray out/black out. I would like to automatically initiate an emails alert to the users when OS X Server gets a shutdown commend. Can this be done?

    Consider acquiring and configuring a less-interruptible power supply, and configure that to communicate with OS X Server via USB; options that will work include the APC SmartUPS supplies I've tried.  (OS X Server doesn't generally "appreciate" having the power yanked, and if the grid is already greying out, it's a little late; I don't know that I'd trust the shutdown to complete.)
    If you're shutting down the system via ssh session or equivalent (and not the GUI), you could write a shell script that does what you need prior to issuing the shutdown command.
    If you're shutting down via UPS, there's a script that can be used but it's kinda far along and unlikely that mail or SMS will be read before the server is offline.

  • Need Help for Sending Email with LabWindows 8.5 or 9

    Hi,
    I'm trying to send an email with attach excel files to it using InetSendMail function and outlook activeX and always having no success on it.
    I am still a student so i dont have much time for researching these functions, so im asking for an example working code for this problem.
    Thanks for your the help in advance...
    I've also tried changing the examples from the package
    Solved!
    Go to Solution.

    Hi,
    You can use LaunchExecutableEx to determine the window state:
    LaunchExecutableEx ("command.com /C calc.exe", LE_HIDE, NULL);
    Beware that this function does not wait for the started executable to exit.
    It executes the command in the string and continues.
    If your application has to get the results of the call, then you need to get the application handle  (3rd parameter, put a variable instead of the NULL above) and call ExecutableHasTerminated in a loop to find out if the execution finished.
    Read carefully the help for the LaunchExecutableEx function and Handle parameter.
    To get the result of the command line call, you can add a "> output.txt" parameter to the end of your command line call.
    This way all the text output of the command is written to the output.txt file, from which you can read the result.
    Check the command-line email sender program's help if there is a special paramter to make it more "verbose".
    Hope this helps, 
    S. Eren BALCI
    www.aselsan.com.tr

  • Need help with sending Emails... My AOL Account from Apple Mail

    I have no problem receiving emails on this account through my apple mail setup but for some reason the sending mail continues to give me issues... it says that my "smtp.aol.com...." server is timed out. Why is it not able to send but is able to receive? what can i do to alleviate this situation?
    Please advise!
    Thank you!
    <Post Relocated by Moderator>

    Alexisann, Welcome to the discussion area!
    I'm not sure how you ended up in the "Discussions > AirPort > AirPort for Windows" discussion area. Your question has nothing to do with Apple's wireless base stations, wireless networking, nor Windows.
    A much better place to put your question would be the "Discussions > Mac OS X v10.5 Leopard > Mail and Address Book" discussion area.

  • Email notification when creating a task in UWL

    Hi all,
    I have email well configured for workflow notification and subscription, but I can't find out why when I create a new task in UWL the email is not send.
    Where do I have to configure email notification for new tasks?
    I realised that these 2 things are necessary, and also the email configuration (I have the one for subscription and workflow notification):
    1.- In System Administration  ® System Configuration ® Universal Worklist & Workflow ® Workflow ® Engine ® Engine:
    Notify Assignees On Task Creation --> TRUE
    2.- When creating the task: Notify On Updates, Completion, and if Overdue is selected.
    What else do I need?
    Thanks,
    Regards.

    Hi Iker,
    Could you please check the following documentation on the KM side?
    The channels need to be configured on the KMC side too, and the user has to have a valid email address set up in Identity Management.  We also need to be clear when we are speaking about notfications these are KMC notifications and not the backend workflow SAP Office documents.   There is a bit of confusion sometimes regarding this. On the KMC side please consult the following documentation, that my colleague Cathal was nice to provide us with
    http://help.sap.com/saphelp_nw70/helpdata/en/3d/b58436b8a911d5993900508b6b8b11/frameset.htm
    See also the links at the bottom of the page. Also, note 808756 (notification/channel configuration)
    Please let me know if this helps:
    Beth Maben
    EP - Senior Support Consultant
    AGS Primary Support, Business Suite & Technology
    Please see the UWL Wiki @
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

Maybe you are looking for

  • Is it possible to play music from my external hard drive on my ultrabook? I don't want to take up space in the internal drive.

    I recently bought an ultrabook (windows) and transferred all of my music (from itunes) onto an external hard-drive. I don't want to transfer all the music onto my new laptop because that would take up too much space. So is it possible for me to add n

  • Powering on is mest up! Need Help!

    When I turn on my Blueberry iBook G3 Clamshell it turns on properly making the chimes noise and everything. Then it just stays on a gray screen and in the center a folder switches from a folder with the "finder: logo on it to a folder with a "?" on i

  • Canon  MP 620 not recognised since new airport extreme

    I've been successfully using a Canon MP620 printer and scanner wirelessly for about six months but then my old Buffalo AirStation gave up the ghost and I replaced it with a new Airport Extreme. It was a joy to get something out of the box, plug it in

  • Do Not have the privileges to import Cd's to itunes.

    I have recently purchased a new mac. I have had troubles importing Cd's to my itunes, with an error saying i do not have the privilege to do this. I have tried to open the Cd in find and see whether i was able to make changes to the privilege; howeve

  • How do I determine firefox and mac?

    I'm working on a display bug in another developer's code. I've got it working everywhere except firefox on a mac. When a user is on firefox and a mac, the page display is off slightly. I can remedy this problem with a little hack of my style sheet. H