How to send email when resubmission ends?

Hi experts,
In my workflow the users want to receive reminder on specific date.
So when the step arrive to the workplace, the users make resubmission and the step transferred to RESUBMISSION folder.
On Resubmission date I have to send email to some users.
The Resubmission date coming must be also the terminating event for the Task.
There actions must be performed only when Resubmission date coming
and not if user performs "End Resubmission" manually.
How can I do this?
Can anyone help me?
Thanks,
Nina.

Hi Nina,
   You can use dead line monitoring to solve the resubmission problem. I am explaining the scenario I used it for.
I had to re execute the  agent resolution after a certain date is passed and there were some more conditions to be checked before that. When you activate deadline a new output option is available called "Dead Line Passed". In this output you can use process control type step for making current work item obsolete, this will give control a new output called "Processing obsolete" in this branch you can call send email step and loop back and re submit the work item to who ever you want same person. In my case it has to be next level in approval hierarchy so I just added one level and looped back to decision step for new agent resolution.
I hope this makes sense. If you give exact scenario I may work out a prototype or simple steps.
Warm Regards,
Anuj Nagpal

Similar Messages

  • Apex 4: How to send email when form is submitted?

    Hi,
    Using Apex 4.0.2 on DB 11g, I've a form with around 80 fields and 4 check boxes.
    When the user clicks on submit button, besides saving the values in the database I also have to send emails. Selection of the 4 check boxes decides whom the email has to go to, i.e if 2 check boxes are checked, send 2 emails.
    In the emails, some contents will be based on the data the user has filled and some from the database; also data in different emails will be different.
    From what I've read, to send email I've to use APEX_MAIL API and make a conditional process depending on the check boxes selected. Also that I have configure mail server in database and that mail sever has to accept autonomous user (i.e. sending email without password)
    Is this the right approach?
    How can I do this?
    Is there any example/tutorial that will guide me in doing this?
    Thank you for your time.

    The Apex email package is very simple.
    v_id := apex_mail.send(
              p_to        => v_to,
              p_from      => v_from,
              p_subj      => v_subject,
              p_body      => v_body,
              p_body_html => v_html);It's up to you how you get the values of the variables.
    Also that I have configure mail server in database and that mail sever has to accept autonomous userThe mail server is not in the database, but you do have to inform Apex which server to use (smtp.yourcompany.com).
    Most smtp servers require user and password. In that case you have to write your own procedure. Search the pl/sql forum for email authentication and you will find many examples.
    It is probably also possible to configure the smtp server in such a way that requests coming from the database do not need authentication. That is how we have it configured (but I don't know how the administrator did it, though).

  • How to send emails when smtp server stops working?

    How do  i send e mails when my smtp server has stopped working?

    How can users send email messages if the Exchange Server goes offline?
    Is there a system that can be setup in case of server failure?
    Thanks in advance. 
    Check out the HA options with Exchange 2013
    https://technet.microsoft.com/en-us/library/dd638137(v=exchg.150).aspx
    High availability and site resilience
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • How to send email when task is acquired by a user

    hi all again
    I need help about notifications in tasks. There are some statuses in task(assigned,outcome updated etc.) but i can't see acquired or released states. These are covered in ASSIGNED state but always same mail goes when a task is assigned to a group and acquired by a user(this confuses customer). How can i manage these? Is there a way?
    Thks

    so any help? I need a solution very urgent
    thks

  • HT4979 why can I not send email when away from my home wifi? Am able to receive messages OK, and outgoing mailserver is correct?

    Why am I unable to send email when away from my home wifi ? I am able to receive mail OK, and have double- checked the outgoing server which is correct. This problem is consistent with my Macbook Pro, iPhone, and iPad2.
    Attempts to send messages results in them sitting in the Outbox and never- ending 'sending message' displayed.
    I am able to send using my   me.com  server.
    Home service provider is Cogeco.
    Any help would be appreciated.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try a Reset - iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    Or this - Delete the account in Mail and then set it up again.
     Cheers, Tom

  • How to sending email from Oracle 6i(Forms)

    How can I send email from Oracle Forms(6i).
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

  • How to sending email from Oracle Forms

    How to sending email from Oracle 6i(Forms)
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

  • [SOLVED]How to send email to a local user?

    I have installed Mutt, msmtp, procmail and I can send and receive emails to/from remote hosts and I'd like to send email locally also (to the recipients on the same machine as the sender).
    When I try to send email to a local user from the root account -
    echo "Test message" | mail -s "Test subject" localuser
    then I get an error that connection to the port 25 is refused. Because the /etc/msmtprc file contains the 'localhost' as the default account's host, and on the local host I don't have a mail server listening on 25 port running.
    When I try to send email from a non-root account which has in /$HOME/.msmtprc file a real email account on a remote server, then of course there is an error that the domain for the email address 'localuser' is not recognized.
    How can sending email to local users be enabled?
    Last edited by nbd (2014-09-30 22:33:37)

    If I understand correctly, postfix it's a constantly running daemon. Seems to be an overhead for delivering only from time to time sent messages.
    ewaller wrote:
    > Out of the box, sendmail should be safe, but I think you have to enable local mail.
    Currently I have msmtp-mta installed, which is described as having sendmail functionality. If I install sendmail - will it be possible to send local email without running email daemons?

  • TS3899 I can't send email when wifi is on

    I can't send email when wifi is on. How do I fix??

    I can't send email when wifi is on. How do I fix??

  • How to send emails to Multiple Users from a Single People Picker lookup field using Sharepoint designer workflow

    Hi All,
    I am working with SharePoint 2013 designer workflow. we are using office 365.
    Our requirement to send email to multiple users, get the user groups from lookup list people and groups column.
    But SP designer sending emails to the first user alone.
    Please guide me to proceed.
    Advance Thanks.
    Regards
    Jenkins NS
    Thanks and Regards Jenkins

    finally I got a solution
     Identified a workaround to solve the issue using SharePoint designer.
    Step 1
    Create a lookup list Example department
    Columns
    Title (by default) – Single line of text
    Users – Person or Group
    Emails – Multiple lines of text
    hidden the Emails column (go to content type and set the column as hidden)
    Create a SharePoint designer Workflow
    Start Workflow automatically when an item is created
    Also Start Workflow automatically when an item is changed
    Workflow Stage 1
    Set Emails to current Item: Users
    The workflow will get all users email ids and add in the Emails column delimiter as semicolon.
    Step 2
    Create a custom list to get the email ids and send email
    Create a lookup column ex: analysis and refer department list, Allow multiple values
    Then Create a SharePoint designer workflow
    full details workflow steps please follow below
    URL
    http://jenkinsblogs.com/2015/04/30/how-to-send-emails-to-multiple-users-from-lookup-list-people-picker-field-using-sharepoint-designer-workflow/
    Thanks and Regards Jenkins

  • I run DeviceDemo sample to send email, when click send email button after f

    I run DeviceDemo sample to send email, when click send email button after filling all fields, it took me to EverNote application, can not send email. does anyone has this kind experience? how to fix it?

    Hi,
    ADF Mobile cannot directly send emails as this is a security precaution of your mobile phone (imagine all applications could send mails without you confirming). Instead the send mail functionality launches the mail client you have configured and fill in the information you provided in the application. The mail function by the way is implemented through Cordova.
    Frank

  • Cannot send email when clicking lonk on web page

    I cannot send email when clicking link on web page. 
    When I would click the link to send via email I was being directed to hotmail to open new account.
    Today the tech tried to assist me and completely messed up my email capabilities by setting up
    windows live account.
    I am thoroughly disgusted with FIOS internet services..Every time I've called them in the past month problem has been with someone else whose portal services they are using.
    I cannot send emails because all my contact information cannot be moved.
    I'm paying for FIOS internet service that is almost non existent.
    THe VZ in home agent doesn't work nor does the FIOS information site.
    My next move is to get rid of FIOS.
    They create more problems then they solve with me.

    If I understand your problem correctly, you are having trouble when clicking on a MailTo link on any webpage? What loads when you click this type of link is a setting in your browser. If you tell us what browser you are using, we can try to direct you to the setting.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • How to Send Email on iPad 3G if you have a 3rd Party POP Account

    After a nice chat with the helpful support guys at O2, it may be worth me telling everyone here who has:
    1. an iPad with Wifi and 3G
    2. a POP email account with another home broadband provider (as I do)
    This is a long post, but it's all worthwhile stuff. As they say in the US, 'your mileage may vary' so I'm not guaranteeing this solution will work for you, but it was the only way I can get my iPad Wifi+3G to successfully send emails when at home and out and about. It ain't pretty, so let's hope it gets cleared up in OS 4 grin
    Before you begin, ensure that:
    1. Wifi is turned off
    2. You are in range of your 3G service.
    3. You have already set up your iPad to work at home using your Wifi router with your broadband provider's POP and SMTP servers.
    What you must do. (Have iPad in landscape format to follow along)
    1. Tap the 'Settings' App on the Home screen
    2. Tap on 'Email Contacts and Calendars' option (on the left)
    3. In the panel on the right, tap on your POP email account, under 'Accounts'
    4. When the Account pane pops up, scroll down to 'Outgoing Mail Server'
    5. Tap on the server
    6. Tap 'Add Server...' under 'Other SMTP Servers' to add your carrier's SMTP server
    7. When the input pane appears type the carrier's smtp server, which may look like smtp.o2.co.uk or smtp.three.co.uk or whatever...
    8. tap 'Save'
    9. You will have to wait while iPad tries to use SSL. Eventually iPad will ask you to connect to the server without SSL.
    10. Tap 'yes' to try without SSL
    11. When iPad gets back to you, tap on the carrier's server in the 'Other SMTP Servers' list. (iPad goes back to the previous screen when the server is verified)
    12. A new panel will appear, showing the server settings. Leave these alone, except for turning the server to 'on'
    13. Tap 'Done' (top right corner)
    14. Now turn your isp's outgoing server off (tap on your primary server and tap on the 'off' on the switch on the settings panel for the server)
    15. Tap 'Done' at the top right and work your way back to the main settings screen
    16. Now you can test your email
    17. Turn iPad off. Not just 'off' but 'OFF'. Hold sleep/wake for a few seconds and slide the switch when asked to turn iPad OFF
    18. Turn iPad back on again (sorry but this OFF/on is essential)
    19. Tap on the Mail app
    20. Compose a test email
    21. Tap 'send'
    Hopefully, after a few seconds of the little whirly thing rotating next to the 3G symbol, you'll hear a 'whoosh' and your email was sent.
    What you must remember to do, when switching between Wifi and 3G:
    In order for Wifi email and 3G email to live in harmony with iPad, iPad needs to be switched off between using one service or the other, and you will need to ensure that only the correct SMTP server is switched on.
    This is not pretty.
    Unfortunately, the hopeful statement on the settings screen that indicates that iPad can use several SMTP servers, one after the other, does not work when you switch from Wifi to 3G and back. It seems that iPad Mail app suffers from hyperthymesia and gets confused very easily and has to have its hand held.
    This is the only way I have managed to send emails from my POP account over Wifi and 3G on O2. Receiving email is fine with no need to turn iPad off and on.
    Don't worry if you forget, and then get an odd message about 'rejected recipients'. Just switch from one SMTP server to the other and turn iPad OFF and on, then reopen the Mail app and the email should send fine.
    Mark

    Most, if not all internet service providers block the use of SMTP servers that are outside of their network or not provided by the ISP being used for your internet connection at the time unless the SMTP server is authenticated. This restriction is part of an overall effort to prevent spam emanating from the ISP's domain and when connected to a cellular internet network for internet access is no exception.
    This has been in place and an issue for a long time - well before the iPhone, iPod Touch, and iPad were introduced that firmware update 4.0 can't do anything about.
    I access two email accounts and both have an authenticated SMTP server. I've never had any problems sending with either account regardless the ISP being used for my internet connection with various wi-fi networks and when connected to AT&T's cellular network.
    Most ISPs don't provide an authenticated SMTP server, but a number of other email account providers do. Apple does with a MobileMe account, and so does Google with a Gmail account to name only two.

  • How to send email notification in different languages in Workflow ?? Urgent Help Needed

    Gurus,
    How to send email notification in different languages in Workflow? Can anyone send me some useful guidelines or link where it is mentioned.

    There is no profile option available to specify whether send or not send email notification.
    But after login, in preferences youcan set the notification preference value by which you can configure whether to send or not
    to send email notifications.
    If you select ''Do not send me mail' or 'Disabled' it will not send.
    For other values it sends the notfication in different formats like text, html, attachments etc...
    Edited by: sarojak on Jun 27, 2011 7:18 AM

  • I am having problems sending emails when using apps. I dont receive any emails when I try to send documents such as pdf or pictures. I tried sending it to my other email account but I don't get any email. What is wrong?

    I am having problems sending emails when using apps. I dont receive any emails when I try to send documents such as pdf or pictures. I tried sending it to my other email account but I don't get any email. What is wrong?

    System Preferences > Network > your-connection-medium > (Assist me) > ( Diagnostics )
    This sometimes provides additional helpful information, sometimes not so much.

Maybe you are looking for

  • Officejet Pro X476dw MFP not reachable

    Hi, out of the blue my Officejet Pro X476dw MFP turned 'not reachable' from my MacBook. Device is still connected to my Wifi network, no changes there since last use. I can print ok from my iPhone. I turned the device off and on again - no success. I

  • Advice on upgrading G5 dual 1.8

    Hi, i've got a G5 with the dual 1.8 Ghz processors. It has a 1TB HDD but only 1GB of ram. It only has 4 Ram slots, and as of my research i see it only accepts PC-3200 low density ram? I'd like to get 8GB in it but can only find 1GB sticks that are PC

  • Daily order report

    Hi Experts, I want to configure the auto mail regarding the order punch daily in SAP, can any one tell me the query for the same. Regards, Datta Kharat

  • Problems Stroking Path with the pencil cs6

    I´ve been making pixel art for a while now and recently I upgraded to cs6. all was fine till I tried to stroke a circular path with the pencil tool. The Circles it makes are completely uneven. I cant figure out a way to fix this. Help please. These a

  • TS3048 Tiny green light continues to blink and no connection is ever made on the screen for both Keyboard and Mouse

    After doing the steps http://support.apple.com/kb/TS3048#1 both keyboard and mouse tiny green light continues to blink and no connection is ever made on the screen.  What could the problem be?  Items are only 4 months old.