<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105285#M104554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeap i'm using SCOT transaction to send the mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Oct 2005 14:56:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-25T14:56:25Z</dc:date>
    <item>
      <title>Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105283#M104552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use the FM: SO_NEW_DOCUMENT_SEND_API1 to send emails to internet address(e.g mail@company.com), this function executes without exceptions but the mail is not sent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm doing something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  IT_I0105_DB TYPE STANDARD   TABLE OF PA0105    WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  IT_PA0032   TYPE STANDARD   TABLE OF TY_PA0032 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  IT_DESTINO  LIKE SOMLRECI1  OCCURS 1           WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  IT_TEXTO    LIKE SOLI       OCCURS 10          WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  IT_TITULO   LIKE SODOCCHGI1 OCCURS 0           WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  V_USNAME    LIKE SY-UNAME,&lt;/P&gt;&lt;P&gt;  V_NAME      LIKE ESS_EMP-NAME,&lt;/P&gt;&lt;P&gt;  V_SHORT     LIKE P1000-SHORT,&lt;/P&gt;&lt;P&gt;  V_STEXT     LIKE P1000-STEXT,&lt;/P&gt;&lt;P&gt;  V_EMPLEADO  TYPE STRING,&lt;/P&gt;&lt;P&gt;  V_UNIORG    TYPE STRING,&lt;/P&gt;&lt;P&gt;  V_UBICACION TYPE STRING,&lt;/P&gt;&lt;P&gt;  V_EXTENSION TYPE STRING,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  V_MAIL      TYPE HRWPC_S_CONTACT-EMAIL.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Receiver&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  MOVE: V_MAIL TO IT_DESTINO-RECEIVER,&lt;/P&gt;&lt;P&gt;        'U'    TO IT_DESTINO-REC_TYPE,&lt;/P&gt;&lt;P&gt;        ' '    TO IT_DESTINO-EXPRESS.&lt;/P&gt;&lt;P&gt;  APPEND IT_DESTINO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Title&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IT_TITULO-OBJ_NAME  = 'EMAIL'.&lt;/P&gt;&lt;P&gt;  IT_TITULO-OBJ_DESCR = 'PRUEBA DEL MAIL'.&lt;/P&gt;&lt;P&gt;  APPEND IT_TITULO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Content&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IT_TEXTO-LINE = V_EMPLEADO.&lt;/P&gt;&lt;P&gt;  APPEND IT_TEXTO.&lt;/P&gt;&lt;P&gt;  IT_TEXTO-LINE = V_UBICACION.&lt;/P&gt;&lt;P&gt;  APPEND IT_TEXTO.&lt;/P&gt;&lt;P&gt;  IT_TEXTO-LINE = V_EXTENSION.&lt;/P&gt;&lt;P&gt;  APPEND IT_TEXTO.&lt;/P&gt;&lt;P&gt;  IT_TEXTO-LINE = P_PERIODO.&lt;/P&gt;&lt;P&gt;  APPEND IT_TEXTO.&lt;/P&gt;&lt;P&gt;  IT_TEXTO-LINE = V_UNIORG.&lt;/P&gt;&lt;P&gt;  APPEND IT_TEXTO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;        DOCUMENT_DATA               = IT_TITULO&lt;/P&gt;&lt;P&gt;        DOCUMENT_TYPE               = 'RAW'&lt;/P&gt;&lt;P&gt;        PUT_IN_OUTBOX               = ''&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;        OBJECT_CONTENT              = IT_TEXTO&lt;/P&gt;&lt;P&gt;        RECEIVERS                   = IT_DESTINO&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;        TOO_MANY_RECEIVERS          = 1&lt;/P&gt;&lt;P&gt;        DOCUMENT_NOT_SENT           = 2&lt;/P&gt;&lt;P&gt;        DOCUMENT_TYPE_NOT_EXIST     = 3&lt;/P&gt;&lt;P&gt;        OPERATION_NO_AUTHORIZATION  = 4&lt;/P&gt;&lt;P&gt;        PARAMETER_ERROR             = 5&lt;/P&gt;&lt;P&gt;        X_ERROR                     = 6&lt;/P&gt;&lt;P&gt;        ENQUEUE_ERROR               = 7&lt;/P&gt;&lt;P&gt;        OTHERS                      = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont know whats happening.&lt;/P&gt;&lt;P&gt;I hope somebody can helps me to solve my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 14:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105283#M104552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-25T14:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105284#M104553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code works good in my system.  Have to sent the email using transaction SCOT?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 14:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105284#M104553</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-25T14:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105285#M104554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeap i'm using SCOT transaction to send the mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 14:56:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105285#M104554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-25T14:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105286#M104555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So when executing your program, does it even show up in SCOT?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 15:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105286#M104555</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-25T15:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105287#M104556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, when i execute the transaction SCOT it says: "No messages sent".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 15:22:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105287#M104556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-25T15:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105288#M104557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe your mail is waiting, then you have to send the process. If your admin sys does not create the job to send mail, you have to perform this step manualy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 15:24:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105288#M104557</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2005-10-25T15:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105289#M104558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well Frédéric, i'm trying to perform this step with the SCOT transaction, but this transaction says that there are no mails to send.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx n rgds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 15:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105289#M104558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-25T15:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105290#M104559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please i need help to solve the problems.&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx n Rgds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 18:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105290#M104559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-25T18:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105291#M104560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send an email using standard SAP functionality (System-&amp;gt;Short Message)?  If that does not show up in SCOT either then you definetely have a system configuration problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 18:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105291#M104560</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2005-10-25T18:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105292#M104561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx all i solve the problem. Set the import parameter COMMIT_WORK to 'X' did the work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i see that the mail is sent with the mail cofigured in SU01 transaction. Is there any way to Set the 'FROM' attribute of the mail? If so, then i want to know it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or is there any other function that sends internet mail and let me set the 'FROM' attribute?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 18:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105292#M104561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-25T18:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105293#M104562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh yes,  I forgot about that.  You must set the email address of the user which is doing the sending.  You can not specify the sender programmically using the function module that you are.  I have heard that you can do it if you are using SO_OBJECT_SEND.  Which is called inside of the function module that you are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 19:17:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105293#M104562</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-25T19:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105294#M104563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok Rich, thx let me try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2005 20:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105294#M104563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-25T20:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105295#M104564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try to use the FM 'SO_OBJECT_SEND' but i dont know which are the paramaters that i have to set to execute it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could somebody explain me where i say to the FM the Subject, the sender, the mail body... ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope somebody can helps me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx and rgds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grrgory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 21:18:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105295#M104564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T21:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105296#M104565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp" target="test_blank"&gt;http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html" target="test_blank"&gt;http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points by clicking the star on the left of reply,if it is useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2005 04:08:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105296#M104565</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-10-27T04:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Send mail to internet address using SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105297#M104566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Jayanthi, thx for ur answer. I see the links and try to use the FM, but without success &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mi issue is that i whant to pass the from address(the mail sender's) to the function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2005 13:25:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-to-internet-address-using-so-new-document-send-api1/m-p/1105297#M104566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-27T13:25:33Z</dc:date>
    </item>
  </channel>
</rss>

