Send mail task not working

Hi Friends,
I am facing a problem in Send Mail step. I have used  expressions as a initiator  but its going into error.I am sending the mail to initiator.In the binding the AddressStrings is getting no data and type is G.
I am getting the error
The Document <Customer created >could not be sent
Thanks in advance.
Regards,
Amit

Hi Aditya,
The workflow has ended up with status ERROR. In run time the ADDRESSSTRING no container value.
If i am not wrong we can refresh the buffer and restart again.Any help from your side.
Regards,
Amit

Similar Messages

  • HT201320 I have IOS 7 5S and using mail. Receiving works great. Sending mail will not work. Using Centurylink. On my IOS 6 Iphone 4 it works great. Compared settings and they are identical. Now what?

    I have IOS 7 5S and using mail. Receiving works great. Sending mail will not work. Using Centurylink. On my IOS 6 Iphone 4 it works great. Compared settings and they are identical. Now what?

    Well, this is a recurring issue for many users...a small percentage of users but still a bug.  Report the issue here to Apple:  www.apple.com/feedback
    iOS7.0.3 will be released next week, which as of now, I know is primarily for an iMessage but hopefully it will clear up some of these email issues some are also having.

  • Send Mail is not working

    Hi,
    I have installed Oracle Apex 3.2 on Oracle 10G Enterprise Edition database, Using Glassfish Server and apex listener
    I have configured the SMTP on my machine. And added this SMTP host address and port in the admin instance setting.
    When I run the below code mails are not getting triggered. What might be the issue in this setting. Need your suggestion in order to make work of send mails.
    DECLARE
    v_subject VARCHAR2(100);
    v_sender VARCHAR2(100);
    v_recipient VARCHAR2(100);
    v_cc VARCHAR2(100);
    v_bcc VARCHAR2(100);
    v_body VARCHAR2(4000);
    v_body_html VARCHAR2(4000);
    BEGIN
    v_subject := 'Email Subject';
    v_sender := '[email protected]';
    v_recipient := '[email protected]';
    v_cc := '';
    v_bcc := '';
    v_body := 'Some text' || chr(10) || 'more text here';
    v_body_html := 'Some text
    more text here';
    -- Send plain text email
    APEX_MAIL.SEND(
    P_TO => v_recipient,
    P_FROM => v_sender,
    P_CC => v_cc,
    P_BCC => v_bcc,
    P_SUBJ => v_subject,
    P_BODY => v_body);
    -- Send HTML email
    APEX_MAIL.SEND(
    P_TO => v_recipient,
    P_FROM => v_sender,
    P_CC => v_cc,
    P_BCC => v_bcc,
    P_SUBJ => v_subject,
    P_BODY => v_body,
    P_BODY_HTML => v_body_html);
    APEX_MAIL.PUSH_QUEUE;
    END;

    I am also facing issue with email send .
    apex 4.1.1 oracle 11g
    create or replace procedure email ( p_email  in    varchar2)
    is
        l_workspace_id      number;
        l_subject           varchar2(2000);
        l_body              clob;
        l_body_html         clob;
         l_email varchar2(40);
    begin
        l_workspace_id := apex_util.find_security_group_id (p_workspace => 'xyz');
        apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    l_email:= p_email;
        l_body := ' ';
        l_subject := 'You have new tasks';
        --if l_email=:P3_CONFIRM_EMAIL_ADDRESS is not null then
       -- email( l_email =>:P3_CONFIRM_EMAIL );
    -- end if;
            l_body_html := '<p />The following tasks have been added.';
         apex_mail.send (
                p_to        => l_email ,
                p_from      => '[email protected]',
                p_body      => l_body,
                p_body_html => l_body_html,
                p_subj      => l_subject );
      APEX_MAIL.PUSH_QUEUE;
    end; I also check the log and queue but both are empty,
    select * from
    apex_mail_queue
    select * from
    apex_mail_log Kindly suggest what to do ?
    I also created a process in apex , which call this procedure and pass the email address entered by user.

  • PDF Attachment problem in Adobe form and send mail is not working

    Dear Experts,
                         Recently i'm facing a problem regarding Adobe form PDF attachment and sending an e-mail along with the PDF attachment to customer mail id.But when i execute the RFC Function module, in customer side no mail is comming. And when i check the transaction SBWP then i found that the PDF attachment hold only 1KB of data which is not right.For that i'm sending my code which i was declared in my program.Can anybody please help me to overcome this problem?
    Warm Regards,
    sameek.
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
      data: t_att_content_hex type SOLIX_TAB.
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
            l_send type ADR6-SMTP_ADDR value 'Already provided an e-mail address here'.
      DATA: lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    Message body and subject*
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Please fill the attached form and send it back to us.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'Customer Information Form').
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'Customer Information Form'
    I_ATTACHMENT_SIZE =*
    I_ATTACHMENT_LANGUAGE = SPACE*
    I_ATT_CONTENT_TEXT =*
    I_ATTACHMENT_HEADER =*
          i_att_content_hex = t_att_content_hex ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    Add attachment*
    Pass the document to send request*
      lo_send_request->set_document( lo_document ).
    Create sender*
      lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    lo_sender = cl_sapuser_bcs=>create( sy-uname ).*
    Set sender*
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    Create recipient*
      lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    lo_recipient = cl_cam_address_bcs=>create_internet_address( l_send ).*
    Set recipient*
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    lo_send_request->add_recipient(*
    EXPORTING*
    i_recipient = lo_recipient*
    i_express = 'X' ).*
    Send email*
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
      COMMIT WORK.
      message 'The Customer Information form has been emailed to the Employee' type 'I'.

    I am also facing issue with email send .
    apex 4.1.1 oracle 11g
    create or replace procedure email ( p_email  in    varchar2)
    is
        l_workspace_id      number;
        l_subject           varchar2(2000);
        l_body              clob;
        l_body_html         clob;
         l_email varchar2(40);
    begin
        l_workspace_id := apex_util.find_security_group_id (p_workspace => 'xyz');
        apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    l_email:= p_email;
        l_body := ' ';
        l_subject := 'You have new tasks';
        --if l_email=:P3_CONFIRM_EMAIL_ADDRESS is not null then
       -- email( l_email =>:P3_CONFIRM_EMAIL );
    -- end if;
            l_body_html := '<p />The following tasks have been added.';
         apex_mail.send (
                p_to        => l_email ,
                p_from      => '[email protected]',
                p_body      => l_body,
                p_body_html => l_body_html,
                p_subj      => l_subject );
      APEX_MAIL.PUSH_QUEUE;
    end; I also check the log and queue but both are empty,
    select * from
    apex_mail_queue
    select * from
    apex_mail_log Kindly suggest what to do ?
    I also created a process in apex , which call this procedure and pass the email address entered by user.

  • IOS mail client not working in certain wifi networks

    Hey,
    this is driving me crazy:
    When I use my iPad or iPhone within our universities eduroam wifi network, receiving and sending mails does not work.
    I am using a google apps account. One would say, ok that's due to some IMAP and SMTP port blocking. However it isn't. Using my android phone with the same settings it just wouldn't work ... Never!
    Using my iPad in other networks works just fine ...
    Please help me with some suggestions.
    Jacob

    It could be the network, but what surprises me is that nothing else is being blocked at all. And I can't seem to change the port that Mail is on. I tried a port scan, and it came up that that port is blocked (993), but it also came up that every other port I tried was also blocked. I used a Mac to do a Port Scan for my iPad's IP, but it wasn't detecting any open ports. So I don't know if it is an issue with the network, or perhaps with my iOS devices. The network has 802.1X security I believe (I need a username and password to login), so unsure if this would affect it at all?

  • Dynamic 'Include Text' syntax not working in Send mail task.

    Hi all,
    I want to send some dynamic text via send mail task to agents.
    I tried creating a standard text in SO10. In send mail task in Descriiption tab added the below syntax to call inculde text.
    "INCLUDE ZTEST OBJECT TEXT ID ST LANGUAGE EN". This works and i can see the text in mail  in my sap inbox.
    Now when I try to add text using a variable as below it simply display the sytax and not the text in ZTEST.
    "INCLUDE  &VAR1& OBJECT TEXT ID ST LANGUAGE EN"  *Where VAR1 = ZTEST.
    Please let meknow if i am missing something.
    Thanks
    Edited by: Sunny80 on Oct 20, 2009 11:02 AM
    Edited by: Sunny80 on Oct 20, 2009 11:04 AM

    Hello ,
    Please provide the details as how it is resolved so that others can follow.
    thanks
    srinivas.

  • I updated to iOS 6 on my iphone 4 and updated my macbook pro with and now my mail is not working at all on my iPhone.  I can receive/send on my laptop, but not my iPhone!! Can someone help?

    i updated to iOS 6 on my iphone 4 and updated my macbook pro  and now my mail is not working at all on my iPhone, whether on wifi or 3G.  I can receive/send on my laptop, but not my iPhone!! Can someone help?

    Which email provider are you using?  If it's Gmail, try unlocking your account here: https://accounts.google.com/DisplayUnlockCaptcha.

  • TS3276 Mail is not working.  Cannot open new e-mail; cannot send mail.  Connection doctor shows green dot in status column.  I can't delete old e-mails to free up space.

    Mail is not working.  I cannot open new e-mail; and I cannot send mail either.  Also, I cannot delete past e-mails to free up space.  Mailbox seems to hang in general.

    OS X version?

  • I am using i pad mini. I am going through a issue in which i am not able to send mails to my work email add wherein i am able to receive emails from same email id.

    i am using i pad mini. I am going through a issue in which i am not able to send mails to my work email add wherein i am able to receive emails from same email id.

    With one mailbox server in the production site and one in the DR site, you do not have high availability.  If the main site goes down, the cluster loses quorum and all databases dismount.  You must then force quorum or move the file share
    witness to restore quorum.
    I can't tell you why what you observed happened.  At the time of the problem I would have been looking at the transport queues to see what's queued and to where.
    I recommend you look at the configuration of your send connectors to ensure that none of them are dependent upon the DR site server.
    To send mail outside, you must allow relay.  To do this, I recommend you create a new receive connector that's configured to allow relay and restrict access to the application server to keep anyone else from using it to relay.  There are plenty
    of articles on the Internet that describe how to configure a relay connector.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Auto-Reaction E-mail is not working:

    HI Basis gurus,
    I am setting up a fresh configuration with Solution Manager.
    Central system is solution manager 4.0.
    Auto-Reaction E-mail is not working:
    I have set Z_ccms_Onalert_email with the following parameter
    Parameter name Parameter value
    SENDER userid from client 000
    RECIPIENT my company e-mail Id.
    RECIPIENT-TYPEID U
    for the below MTE:
    Properties of DEV\r3dev_DEV_00\...\Background\Aborted
    MTE class R3BPServerSpecAbortedJobs
    when I check in CCMS Selfmonitoring it shows:
    Node name (MTE) DEV\MoniInfra_r3dev_DEV_00\...\DataSupplier\Log
    System DEV
    Context MoniInfra_r3dev_DEV_00
    Object name DataSupplier
    Short name Log
    Status ACTIVE
    Alert text Document <CCMS alerts DEV 20050808 041658> could not be sent
    Line-Id in Message Container 0000000243 0001149437 1123489018
    VAR 1 CCMS alerts DEV 20050808 041658
    VAR 2 CCMS alerts DEV 20050808 041658
    VAR 3 CCMS alerts DEV 20050808 041658
    VAR 4 CCMS alerts DEV 20050808 041658
    I also tried creating seperate MTE and added
    Properties of DEV\r3dev_DEV_00\...\R3Abap\Shortdump
    MTE class R3AbapShortdumps
    With Auto-Reaction Methor has ccms_Onalert_email with the above parameter.
    But the e-mails are not triggered.
    I checked ccms_selfmonitoring and found below error message:
    Node name (MTE) DEV\MoniInfra_r3dev_DEV_00\...\Tooldispatching (short running tasks)\Messages
    Context MoniInfra_r3dev_DEV_00 Object name Tooldispatching (short running tasks) Alert text Unable to set runtime status for data collection method (RC = 253), MTE: DEV\r3dev_DEV_00\...\R3Abap\Shortdumps
    Line-Id in Message Container 0000000222 0001068279 1122993022
    Also send_internet_mail Job is running every 10mins.
    Please provide solutions for this.
    Thanks in advance
    Pradeep

    Hi Pradeep,
    Can you send e-mail at all from the ssm 4.0 ? Are there any mail hanging in scott ? Are the MTE's reporting at all? May be a stupid one but you say
    I have set Z_ccms_Onalert_email with the following parameter
    and then
    With Auto-Reaction Methor has ccms_Onalert_email with the above parameter.
    But the e-mails are not triggered.
    Is the no Z_ a typo in the post or is this a typo in you're system ??
    Lando

  • Printing Long text in Send Mail Task

    Hi All,
    My requirement is to print the long text of particular error message in the send mail task, which will be sent to outlook.
    for this i have an activity beforr the mail task, where i have filled the multiline parameter called 'TEXT' and this is exported to workflow also.
    In my send mail task, in the body of the message, using insert expression i have inserted the multiline container 'TEXT' with the option of line break, so it came &TEXT##&.
    But once the WF is executed , i checked the WF log and found that the mail is sent and i have checked the container 'TEXT' in my previous activity where the TEXT container has 10 lines.
    But when i checked the mail in SOST the contents of TEXT is not getting printed.
    What will be the issue?
    Thanks and Regards,
    Swaminathan

    @Rick
    How is TEXT defined in the container? Is it passed in via the binding?
    I think if at all you want to use the container element in the mail then binding is not necessary from workflow to task.
    @Swaminathan PJ 
    the multiline container 'TEXT' with the option of line break, so it came &TEXT##&.
    Try to print the entire text continuosly with out line breaks then it works.

  • Safari and mail does not work

    Safari and mail is not working on my new iPad with iOS 5.1.1, tried every trick in the book but to no avail. Please suggest in case I want to update my ios5.1.1 as I fear that it might have corrupted somehow, what's the way to do it. I don't want to upgrade to higher iOS versions. Thanks

    Close Safari and Mail app on the Task Bar and re-launch.
    1. Double-click the Home button to reveal Task Bar
    2. Hold Safari and Mail app down for a second or two until you see the minus sign
    3. Tap the minus sign to close app
    4. Tap area above Task Bar to return to Home screen

  • My Yahoo Mail is not Working on any of my Apple devices,  It attempts to download new email but then stops.  Any ideas?

    My Yahoo Mail is not Working on any of my Apple devices,  It attempts to download new email but then stops.  Any ideas?

    I, too, am having a problem with my Yahoo email account on my first generation IPad. I can't download my emails to my IPad from the server. The IPad looks like it's trying to download them but can't do it. I am able to send emails from my IPad with my Yahoo account.
    This problem started yesterday, Aug., 25th, the day after I uploaded the last update from Apple. I am able to set up another email account through Sbcglobal that will download my emails to my IPad but it is not sync'ed with my desktop mail which creates a mess when I move or delete emails.
    I've tried deleting my Yahoo account and then adding it back. Also I've reset my IPad and I've done a full restore.
    I think it has something to do with the last update, which I believe was a security update, which may have reset the firewall. That's just a guess.
    Has anyone figures out anything else?

  • Upgraded to OS X 10.5.6 - Now Mail is not working.

    I recently upgraded to OS X 10.5.6. Everythingwent just fine, but Mail is not working. None of my old messages show up, nor am I able to send or receive mail. My old folders are displayed, but no messages are in there either.
    I use a POP account. I verified the settings with the service provider website and all of it is by the book. These same settings were used with the old version of Mail with no problems, but its just nor working anymore!
    Help!!!

    royzee wrote:
    I cannot send or receive emails.
    sorry, I can not explain that. usually this would indicate that something is wrong with your account settings. you may want to try the following. copy your rogers inbox and sent mail to local mailboxes in "on my mac" section (make new mailboxes there). then delete rogers account and set it up from scratch. see if it works.

  • Outgoing mail is not working on the Macbook Pro

    Hey
    I am using the mail client to read my gmail mails in my Macbook Pro. Incoming and outgoing emails were working fine and all of a sudden for the last 2 days my outgoing mails are not working and i get this error" the sender address blah blah.com was rejected by the server".
    I reentered my cred in the pref pane and it still does not work. I am able to send mails fine using the browser. Incoming mails is fine is fine on the client.
    Any idea what is causing this error?
    Thanks
    Rpk
    Mac Mini, MacBook Pro   Mac OS X (10.4.5)  

    I'm not sure why this worked fine for a period of time but most, if not all ISPs use for connecting to the internet block the use of SMTP servers outside of their network (or not provided by the ISP) on Port 25. Some ISPs allow the use of an authenticated SMTP server only that is outside of their network on Port 25 but some block its use regardless.
    These restrictions are in place as part of an overall effort to prevent spam emanating from the ISP's domain.
    Something to try.
    Go to Mail > Preferences > Accounts and under the Account Information tab for the account preferences at the SMTP server selection, select the Server Settings button below.
    Enter 587 in place of 25 in the Server Port field and when finished, select OK to save the changed setting.
    If this doesn't work, you need to add your ISP's SMTP server to mail and select this SMTP server to send mail with your gmail account which is invisible to all recipients.

Maybe you are looking for

  • Win 7 boot from VHD "License Error: Booting from VHD is not supported on this system"

    I am trying to set up my TP 500 model 2242-CTO to boot from a virtual hard drive, per the instructions at http://blogs.technet.com/keithcombs/archive/2009/0​5/22/dual-boot-from-vhd-using-windows-7-and-window​... I get all the way thru the Win 7 setup

  • How to calculate the circumference of a circle based on the following Circle class?

    I have the following sealed Cirlce class public sealed class Circle private double radius; public double Calculate(Func<double, double> op) return op(radius); I need to calculate the circumference of a (an arbitrary) circle based on this class withou

  • Placing Images with CS2

    Hello: I really hope someone can help me with this. I am using photoshop to create a banner and am having an issue. When I open a new document in photoshop, then use the "place" feature in File to insert a photo from my computer, it distorts the colo

  • HT1926 Cannot install due to invalid drive H:

    Trying to install iTunes again.  Install halts with error saying invalid drive H:  I dont have a drive H:.  Had iTunes installed but it no longer works.  How do I get iTunes to install?  Windows XP system.  Installing itunes for Windows.

  • How my Ubuntu/Firefox 3.6.16 turned into Microsoft I.E. with a Virus Warning.

    When I was 'Surfing' the Internet, looking for some "Train" Photo Wallpapers, when I clicked on a Photo to view, my Firefox 3.6.16 browser turned into a "Fake" I.E. Browser Page with a Windows "Defender" warning box in the center stating that my syst