Sending mail at release time..

Hi Friends..
I have create a workflow for PO.
Once PO was created workflow got triggered..
In my Release strategy i set two level of approval..
My Question is After the approval or rejection of first person the mail will send to
workflow initiator...
release of po -
(po released )- release of po effected..completed
             \ (po cancelled ) -
so where i can add the send mail step task..
Thanks
Gowrishankar

If you have copied from standard workflow thne in step 107 and 112 you set an expression : &_WF_Initiator&. You can add some description in task.

Similar Messages

  • Can you send mail at later time

    can I compose an email and set it to send at a later time?

    No, but you can download and install a mail script that will do it, http://www.andreasamann.com/MacOSX/Mail_Scripts.html

  • Send mail from real time

    can i send email from real time (vxworks) cRIO. using smtp vi's.

    Hi Mazhar,
    Please look at this discussion forum for more information on using smtp with your cRIO. At this point, as I understand, you are connected using a router on the same subnet. As mikes81 has pointed out you do have to configure the IP settings accordingly.If you set MAX to obtain IP settiings automatically it should populate all the fields by itself. Hope this helps!
    Ipshita C.
    National Instruments
    Applications Engineer

  • How do I set an email to send at a specific time/date in the future e.g. tomorrow at 9am. I am on an iMACX using apple's version of windows

    how do I set an email to send at a specific time/date in the future e.g. tomorrow at 9am. I am on an iMAC using apple's version of windows

    apple don't have a version of windows
    only microsoft have windows
    as how one automatate windows to send mails at a time
    googled it for you
    http://www.howtogeek.com/125045/how-to-easily-send-emails-from-the-windows-task- scheduler/
    more options in the search
    https://www.google.dk/search?client=opera&q=automatically+send+email+in+windows& sourceid=opera&ie=UTF-8&oe=UTF-8

  • Need to send Automated mail when releasing the Hold

    Hi Team,
    I have requirement to send the mail to customers when releasing the Hold Manually in OM.
    Kindly let me which event will trigger when releasing the hold manually.(Action -> Release Holds)
    Thanks
    Suresh.S.

    hi,Suresh
    There may be a way for your requirement.
    Achieved with form personliaze as follows(Not test):
    trigger event: post-query
    1.Check the holds which retrived at 2 is released or not.
    If released then send mail.
    2.Get current holds again.
    At the first time, 1 will not perform anything because of holds has not be got yet.
    Afterwards 1 will perform normally when release hold. (Action -> Release Holds)
    Regards,
    Leno
    Edited by: Leno Sun on 2013/05/10 0:36

  • Trigger mail(sending mail to respective person)when budget is release in PS

    Dear Sir,
    I want to trigger mail ( sending mail to respective person ) when budget is release in PS.
    Please help for following :
    Option 1 : User exit
    Option 2: Workflow.
    Regards
    Vinu

    Hi Vinod,
    You can acheive this using a Workflow. What you need to do is set an user status as Rbud-release budget, and when ever you project is set to this status a workflow will trigger to the concerned aggest assigned to workflow task. Here you can provide a user decision as 1. Approve 2. Reject. When ever workflow triggers, approver can see in his inbox the project budget in Cj30 by clicking object link to cj30 and if he feels it is ok then he can click Approve button this will take him to CJ32 screen where he can release the budget. IF the user feels Budget need to be revised then he will click reject this will send an email to the person responsible to revise the budget and at the same time user status will be reset back to previous user status.
    The above  method we have adapted for one of our client. This is done by a workflow consultant.
    Thanks
    regards
    kishore

  • "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    lots of people seem to be havgin a problem sending email from iCloud webmail.
    does your email address have uppercase characters in it?
    if so, try creating an alias in lowercase (go to preferences in iCloud webmail and select 'accounts') and see if email sends okay from that

  • SquirrelMail Takes a long time to send mail

    Am running SquirrelMail 1.4.10a in Tiger Server.
    Users can login, receive mail, compose new mail, and read mail fine. My problem is when a user sends mail, it takes up to 45 secs to complete the send. The sent email will show up in the "Sent" folder okay and it is sent, however, it never closes out of the "Compose" window and seems to time out.
    Any ideas?
    Do I need to add a hosts file or edit an entry into my current hosts file?
    Thank you,
    Steve K

    Hi Steve,
    I'm having the same problem with 2 server that I'm running, web mail runs perfect but the compose window won't refresh after clicking on send!! didi you have any luck fixing this issue? i found out that for some people restarting apache would help but not for me!! maybe you should try!!

  • Send mails to 3 id's at a time

    Hi All:
    I have a probem with sending mails to 3 different persons at a time
    i have table called sudhir which has 3 email id's in it i am using these names to send mails
    this is the query what i am using
    DECLARE
    l_body CLOB;
    l_body_html CLOB;
    BEGIN
    l_body := 'To view the content of this message, please use an HTML enabled mail client.'||utl_tcp.crlf;
    l_body_html := '<html>
    <head>
    <style type="text/css">
    body{font-family: Arial, Helvetica, sans-serif;
                                   font-size:10pt;
                                   margin:30px;
                                   background-color:#ffffff;}
    span.sig{font-style:italic;
    font-weight:bold;
    color:#811919;}
    </style>
    </head>
    <body>'||utl_tcp.crlf;
    l_body_html := l_body_html || '<p> <Strong>Hi:</strong></p>'
    ||'<p>Thank you for your interest in the <strong>Dashboard Tool</strong> package.</p>'|| '<strong>Project Name:</strong>' || '    ' ||:P15_MAIL_PROJECT ||'  ' || '<br>Has crossed the org.limit PVA to be done </br>' || '<br>This is an automated mail. Please do not reply</br>'||utl_tcp.crlf;
    l_body_html := l_body_html ||' <br> Sincerely,</br>'||utl_tcp.crlf;
    l_body_html := l_body_html ||' <span class="sig">Sudhir</span>
    '||utl_tcp.crlf;
    for c1 in (select name from sudhir) loop
    if c1.name is not null then
    htmldb_mail.send(
    p_to => c1.name || 'xxx.com,
    p_from => '[email protected]',
    p_body => l_body,
    p_body_html => l_body_html,
    p_subj => 'Web Dashboard Tool E-Mail Test');
    end if;
    END;
    another question in the table i have 3 mail ids can i send 1 for to-address and another 2-cc as cc to them
    please suggest my earlier post had no replies
    thanks
    sudhir
    Message was edited by:
    Sudhir_N

    Check whether the mail server has been made blocked to send external mail id's

  • Error in sending mail 2nd time, Where is the fault- Help Please

    Hi friends,
    I had written a program to send mail. Everything is fine, when i send first time. But if I try to send mail 2nd time, It gives the error:
    Exception in Connect: IOException while sending message
    Here is the complete code what i had written, It successfully connects using t.connect();
    the problem in t.send();
    output on JBoss Console is :
    Inside Action
    After Transport t = session.getTransport(protocol)
    before t.connect()
    after t.connect()
    Exception in Connect IOException while sending message
    import java.io.*;
    import java.util.*;
    import javax.activation.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class MsgSend extends Action {
         @Override
         public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request
                   , HttpServletResponse response) throws Exception {
              response.setContentType("text/xml");
              PrintWriter out = response.getWriter();
              System.out.println("Inside Action");
                String to = request.getParameter("to");
             String bcc = request.getParameter("bcc");
             String cc = request.getParameter("cc");
             String subject = request.getParameter("sub");
             String user = request.getParameter("user");
             //String password = request.getParameter("pass");
             String message = request.getParameter("message");
             String from = user + "@domainname.com" ;
             /*Properties props = System.getProperties();
             props.put("mail.smtp.host", "smtp.vsginc.com");
              MailBean  bean = MailBean.getInstance();          
              Session session = bean.getSession();          
              String protocol = "smtp";
              Transport t = session.getTransport(protocol);
              System.out.println("After Transport t =              session.getTransport(protocol)");
             MimeMessage msg = new MimeMessage(session);
             msg.setFrom(new InternetAddress(from));
             InternetAddress[] address = {new InternetAddress(to)};
             msg.setRecipients(Message.RecipientType.TO, address);
             if(cc != null ){
                   InternetAddress ccAddr[]  = InternetAddress.parse(cc);
                   msg.setRecipients(Message.RecipientType.CC, ccAddr);
              if(bcc != null){
                   InternetAddress bccAddr[] = InternetAddress.parse(bcc);
                   msg.setRecipients(Message.RecipientType.BCC,bccAddr);
             msg.setSubject(subject);
             // create and fill the first message part
             MimeBodyPart messageBodyPart = new MimeBodyPart();
             messageBodyPart.setText(message);
             Multipart multipart = new MimeMultipart();
             multipart.addBodyPart(messageBodyPart);
             Attachment attachment = Attachment.getInstance();
             ArrayList<String> fileList = attachment.getFileNames();
             String parentFolder = null;
             for(String path:fileList){
                  File attachmentFile = new File(path);
                  messageBodyPart = new MimeBodyPart();
                  DataSource source = new FileDataSource(attachmentFile);
                  messageBodyPart.setDataHandler(new DataHandler(source));
                  messageBodyPart.setFileName(attachmentFile.getName());
                  multipart.addBodyPart(messageBodyPart);
                  parentFolder = attachmentFile.getParent();
             // add the Multipart to the message
             msg.setContent(multipart);
             // set the Date: header
             msg.setSentDate(new Date());        
             try {
                  System.out.println("before t.connect()");
                   t.connect(bean.getSmtpServer(),bean.getUsername() ,bean.getPassword());
                   System.out.println("after t.connect()");
                   //Error is coming here in this Line.
                   t.sendMessage(msg, msg.getAllRecipients());
                   * System.gc(); will relese the fileHandles, if some resource
                   * still holds it.               
                   System.out.println("before System.gc()");
                   System.gc();
                   * Deleting All the Files from Attachment Folders.
                  System.out.println("before attachmentFolder");
                  File attachmentFolder = new File(parentFolder);
                  System.out.println("Attachment Folder Name is : "+attachmentFolder.getAbsolutePath());
                  if(attachmentFolder.isDirectory()){
                       File[] files = attachmentFolder.listFiles();
                       System.out.println("No of Files For Attachments are: "+files.length);
                       boolean deleteResult = false;
                       for(int i=0; i<files.length; i++ ){
                            deleteResult = files.delete();
                        System.out.println(files[i].getName() + " Delete Staus is :"+ deleteResult);
              System.out.println("All attachments Deleted");
              out.print("<result>Mail has been sent successfully</result>");
              } catch (Exception e) {
                   out.print("<result>Mail sending failed</result>");
                   System.out.println("Exception in Connect "+e.getMessage());
              }finally{
                   t.close();               
              return null;
    Problem only comes, when i send 2nd time or more. What is the problem? Please help me out.
    Thanks for your response in advance. One more thing, Whether to send a mail & receive a mail, we need to create different sessions. one for sending & one for receiving mails.
    Message was edited by:
    Ashish.Mishra16

    I don't see anything obviously wrong in your code. Try adding
    session.setDebug(true);
    You can use the same Session for sending and for reading.
    A Session just encapsulates your configuration parameters,
    so as long as they're the same for both usages, one Session
    is fine.

  • E-mail won't send most of the time

    Ever since my Touch upgraded to the v. 4 firmware I've had trouble with sending e-mail. I don't have as much problem receiving mail...sometimes I can only preview my messages and but most of the time I can open received messages. For a while I couldn't send mail (I use Yahoo and the Touch already had the server settings for it), then after a couple of days it suddeenly started sending again. Now it's not sending! So aggravating!!
    The error message says "The connection to the outgoing server "apple.smtp.mail.yahoo.com" failed. Additional Outgoing Mail Servers can be configured in Settings>Mail,Contacts,Calendars." This seems silly because it works - just off and on! Does anyone else have this issue...any solutions? Thanks

    majorv~
    I am having the same problem. I have an ipod touch that worked fine up until the 4.0 firmware. The only thing I have noticed with mine that it was glitchy when it came to sending mail (which I use yahoo). Then most recently it stopped sending altogether. My isp is verizon & I have an airport extreme. I noticed today I can bounce off of a neighbors linksys wifi. Now I have no clue who their isp is. It's either verizon or comcast. Regardless I was able to send mail using their internet. Mine on the other hand is a no go.
    I too am *extremely frustrated*. I have deleted my mail accts several times in hopes of it fixing the problem. I also updated to the latest firmware of 4.1 in hopes of it resolving the issue. I even tried using other smtp servers with no luck.
    I hope someone out here has a solution to this problem. It is very frustrating.

  • Sending mail to agent at run time determination

    hi all
    i have a problem sending mail to the person who has been identified on runtime basis.
    scenario is that i have created a custome rule to determine the person (partner function) on run time basis but problem is that i need to send only mail to that person not the object. as you may be aware we cant use rule in send mail step
    is there any way i can send mail only in this scenario
    help will definitely be appreciated
    regards
    ashish

    You need to store the agents that is getting retrieved from the rule in a Container element and use this isn the Expression of the send mail task.
    Use FM RH_GET_ACTORS to retrieve agent from Rule by using coding in method of respective BO.
    Thanks
    Arghadip

  • Windows live mail having problum after joining in domain examples incoming is good but sent or outgoing is not there and also send mails are not exporting at the time of live mail exporting time?

    windows live mail having problem after joining in domain examples incoming is good but sent or outgoing is not there and also send mails are not exporting at the time of live mail exporting time?

    This is not usually related to AD issues, but it may be more of a DNS issue. I posted a request in your other thread to post an unedited ipconfig /all of the DC and of the client.
    This may help use diagnose this issue and your other thread's printer issues.
    Thank you,
    Ace Fekay
    MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • HT5312 I cant remember the answer to some questions and they blocked my account. I've been sending requests for them to send it to my mail like 20 times and nothing. What can I do?

    I cant remember the answer to some questions and they blocked my account. I've been sending requests for them to send it to my mail like 20 times and nothing. What can I do?

    Click here, phone Apple, and ask for the Account Security team.
    (87657)

  • I am using Endorange as my main mail, but every time i wannt to send open pdf docement as e-mail my computer comes up with other mail softwere called mail, how do I chance that?

    I am using Endorange as my main mail, but every time i wannt to send open pdf docement as e-mail my computer comes up with other mail softwere called mail, how do I chance that?

    I am using Endorange as my main mail, but every time i wannt to send open pdf docement as e-mail my computer comes up with other mail softwere called mail, how do I chance that?

Maybe you are looking for

  • 2 ipods, 2 user accounts, 1 computer, 1 library

    its got to be possible... me and my girlfriend both have new ipods, we have one laptop at home that we both have seperate user accounts for. I've spent a while ripping all of our cds to itunes so we can listen to them. I have a networked hard drive t

  • Printer only prints partial page

    I have all new ink cartridges but when I try to print a page, I only get the top half and then it fades away or I get nothing but a few streaks.  I ran clean printhead, clean ink smear and align printer but that didn't help.

  • CR 10.5 on windows 2k3 TS

    Hi guys, We have 2 terminal server, both working very well, Crystal is working fine also. The only thing is that we do not have all export option on a normal user account, but its working on admin user account. We tried adding read security to TS use

  • Why is opening Multiple eMail Accounts not allowed

    If I open a second Yahoo eMail Account I get a message that the first one is being closed because it is no longer being used. Why is having to accounts open at the same time a problem? What is the reason behind it? If I open the accounts in different

  • Generating digital signature

    Hi, I want to use digital signature to develop some application. It is for experimenting purpose. So is there anyway to generate digital signature without involving CA?? Thanks Jahnvi