<?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 mail sending program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867492#M672729</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to send a mial with text attachement from the r/3. Everything is working fine except the data format in the text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have filled the contetents table as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:  word1(15) type c,
       word2(15) type c,
       tab_space(15) type c,
       idx type i.

word1 = 'firstword'.
word2 = 'secondword'.
tab_space = '      '.
idx = 1.
do 3 times.

concatenate word1   word2    into contents .
*insert wa_contents into table contents .

append contents.

*concatenate word1   word2    into contents .
*insert wa_contents into table contents .

append contents.

enddo.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the packing list table as shown below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DESCRIBE TABLE contents LINES count.
  REFRESH packing_list.
  packing_list-transf_bin = 'X'.
  packing_list-head_start = 1.
  packing_list-head_num = 1.
  packing_list-body_start = 1.
  packing_list-body_num = count.
  packing_list-doc_type = 'RAW'.

  APPEND packing_list.
  CLEAR packing_list.

* Create attachment notification
  packing_list-transf_bin = ''.
  packing_list-head_start = 1.
  packing_list-head_num   = 1.
  packing_list-body_start = 1.
  packing_list-body_num   = count.

  packing_list-doc_type   =  'TXT'.
  packing_list-obj_descr  =  'Material Infotype'.
  packing_list-obj_name   =  'Material Infotype'.
  packing_list-doc_size   =  count * 255.
  APPEND packing_list.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the mail sending code is shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
      document_data                  = document_data
*   PUT_IN_OUTBOX                    = ' '
*   SENDER_ADDRESS                   = SY-UNAME
*   SENDER_ADDRESS_TYPE              = 'B'
*   COMMIT_WORK                      = ' '
* IMPORTING
*   SENT_TO_ALL                      =
*   NEW_OBJECT_ID                    =
*   SENDER_ID                        =
    TABLES
      packing_list                   = packing_list
*   OBJECT_HEADER                    =
    contents_bin                     = attachment
    contents_txt                     = contents
*   CONTENTS_HEX                     =
*   OBJECT_PARA                      =
*   OBJECT_PARB                      =
      receivers                      = real_recipients
* EXCEPTIONS
*   TOO_MANY_RECEIVERS               = 1
*   DOCUMENT_NOT_SENT                = 2
*   DOCUMENT_TYPE_NOT_EXIST          = 3
*   OPERATION_NO_AUTHORIZATION       = 4
*   PARAMETER_ERROR                  = 5
*   X_ERROR                          = 6
*   ENQUEUE_ERROR                    = 7
*   OTHERS                           = 8
            .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is in the attachment file, the data is appearing as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;firstwordsecondword&lt;/P&gt;&lt;P&gt;                            firstwordsecondword&lt;/P&gt;&lt;P&gt;                                                        firstwordsecondword&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the second and third lines are not starting from the begining of new line. I do not understand why. Is that something problem with the packing parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Oct 2007 07:30:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-08T07:30:48Z</dc:date>
    <item>
      <title>mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867492#M672729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to send a mial with text attachement from the r/3. Everything is working fine except the data format in the text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have filled the contetents table as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:  word1(15) type c,
       word2(15) type c,
       tab_space(15) type c,
       idx type i.

word1 = 'firstword'.
word2 = 'secondword'.
tab_space = '      '.
idx = 1.
do 3 times.

concatenate word1   word2    into contents .
*insert wa_contents into table contents .

append contents.

*concatenate word1   word2    into contents .
*insert wa_contents into table contents .

append contents.

enddo.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the packing list table as shown below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DESCRIBE TABLE contents LINES count.
  REFRESH packing_list.
  packing_list-transf_bin = 'X'.
  packing_list-head_start = 1.
  packing_list-head_num = 1.
  packing_list-body_start = 1.
  packing_list-body_num = count.
  packing_list-doc_type = 'RAW'.

  APPEND packing_list.
  CLEAR packing_list.

* Create attachment notification
  packing_list-transf_bin = ''.
  packing_list-head_start = 1.
  packing_list-head_num   = 1.
  packing_list-body_start = 1.
  packing_list-body_num   = count.

  packing_list-doc_type   =  'TXT'.
  packing_list-obj_descr  =  'Material Infotype'.
  packing_list-obj_name   =  'Material Infotype'.
  packing_list-doc_size   =  count * 255.
  APPEND packing_list.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the mail sending code is shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
      document_data                  = document_data
*   PUT_IN_OUTBOX                    = ' '
*   SENDER_ADDRESS                   = SY-UNAME
*   SENDER_ADDRESS_TYPE              = 'B'
*   COMMIT_WORK                      = ' '
* IMPORTING
*   SENT_TO_ALL                      =
*   NEW_OBJECT_ID                    =
*   SENDER_ID                        =
    TABLES
      packing_list                   = packing_list
*   OBJECT_HEADER                    =
    contents_bin                     = attachment
    contents_txt                     = contents
*   CONTENTS_HEX                     =
*   OBJECT_PARA                      =
*   OBJECT_PARB                      =
      receivers                      = real_recipients
* EXCEPTIONS
*   TOO_MANY_RECEIVERS               = 1
*   DOCUMENT_NOT_SENT                = 2
*   DOCUMENT_TYPE_NOT_EXIST          = 3
*   OPERATION_NO_AUTHORIZATION       = 4
*   PARAMETER_ERROR                  = 5
*   X_ERROR                          = 6
*   ENQUEUE_ERROR                    = 7
*   OTHERS                           = 8
            .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is in the attachment file, the data is appearing as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;firstwordsecondword&lt;/P&gt;&lt;P&gt;                            firstwordsecondword&lt;/P&gt;&lt;P&gt;                                                        firstwordsecondword&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the second and third lines are not starting from the begining of new line. I do not understand why. Is that something problem with the packing parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 07:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867492#M672729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T07:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867493#M672730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi just modify your concatenate statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: c_tab type char2 value '  '.  
do ...

concatenate word1   word2    into contents separated by c_tab .
append contents.
clear    contents.
enddo. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope That Helps&lt;/P&gt;&lt;P&gt;Anirban M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 07:42:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867493#M672730</guid>
      <dc:creator>former_member480923</dc:creator>
      <dc:date>2007-10-08T07:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867494#M672731</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 out below link,&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;Regards,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 08:04:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867494#M672731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T08:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867495#M672732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anirban&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done the modifications. Now I get the o/p  in the taxt file like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;firstword secondword&lt;/P&gt;&lt;P&gt;xxxxxxxxxxxxxxxxxxxxfirstword secondword&lt;/P&gt;&lt;P&gt;                                                        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXfirstword secondword&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( X indicates the balnk space )&lt;/P&gt;&lt;P&gt;I wane the o/p in the text file like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;firstword secondword&lt;/P&gt;&lt;P&gt;firstword secondword&lt;/P&gt;&lt;P&gt;firstword secondword&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all lines starting from the same point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        sankar rao&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        sankar rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 08:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867495#M672732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T08:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867496#M672733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written something like the below and it works for me please check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: t_data TYPE STANDARD TABLE OF char50,
      w_data TYPE char50.

DATA:  word1(15) TYPE c,
       word2(15) TYPE c,
       tab_space(15) TYPE c,
       idx TYPE i.

word1 = 'firstword'.
word2 = 'secondword'.
tab_space = '      '.
idx = 1.

DO 3 TIMES.
  CONCATENATE word1   word2    INTO w_data SEPARATED BY tab_space.
  APPEND w_data TO t_data.
  CLEAR  w_data.
ENDDO.

LOOP AT t_data INTO w_data.
  WRITE:/ w_data.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and here is my output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;firstword               secondword
firstword               secondword
firstword               secondword&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope That Helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 09:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867496#M672733</guid>
      <dc:creator>former_member480923</dc:creator>
      <dc:date>2007-10-08T09:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867497#M672734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I disply the o/p in the report it is working fine, But in the text file attachment the text is appearing like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;firstword secondword&lt;/P&gt;&lt;P&gt;xxxxxxxxxxxxxxxxfirstword secondword&lt;/P&gt;&lt;P&gt;XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXfirstword secondword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;X represents the blank space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 09:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867497#M672734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T09:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867498#M672735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_data TYPE STANDARD TABLE OF char50,&lt;/P&gt;&lt;P&gt;      w_data TYPE char50.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA:  word1(15) TYPE c,&lt;/P&gt;&lt;P&gt;       word2(15) TYPE c,&lt;/P&gt;&lt;P&gt;       tab_space(15) TYPE c,&lt;/P&gt;&lt;P&gt;       idx TYPE i.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;word1 = 'firstword'.&lt;/P&gt;&lt;P&gt;word2 = 'secondword'.&lt;/P&gt;&lt;P&gt;tab_space = '      '.&lt;/P&gt;&lt;P&gt;idx = 1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DO 3 TIMES.&lt;/P&gt;&lt;P&gt;  CONCATENATE word1   word2    INTO w_data SEPARATED BY tab_space.&lt;/P&gt;&lt;P&gt;  APPEND w_data TO t_data.&lt;/P&gt;&lt;P&gt;  CLEAR  w_data.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and change your pack list part like this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_objpack-transf_bin = 'X'.&lt;/P&gt;&lt;P&gt;    t_objpack-head_start = 1.&lt;/P&gt;&lt;P&gt;    t_objpack-head_num = 1.&lt;/P&gt;&lt;P&gt;    t_objpack-body_start = 1.&lt;/P&gt;&lt;P&gt;    t_objpack-body_num = count.&lt;/P&gt;&lt;P&gt;    t_objpack-doc_type = 'TXT'.&lt;/P&gt;&lt;P&gt;    t_objpack-obj_name = 'text1'.&lt;/P&gt;&lt;P&gt;    t_objpack-obj_descr = 'Txt2'.&lt;/P&gt;&lt;P&gt;    t_objpack-doc_size = count * 255.&lt;/P&gt;&lt;P&gt;    t_objpack-mess_type =  space.&lt;/P&gt;&lt;P&gt;    APPEND t_objpack.&lt;/P&gt;&lt;P&gt;    CLEAR t_objpack.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 09:39:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867498#M672735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T09:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867499#M672736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change you concatnate statement like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate word1   &lt;/P&gt;&lt;P&gt;                   word2    &lt;/P&gt;&lt;P&gt;                   CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF&lt;/P&gt;&lt;P&gt;             into contents .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 10:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867499#M672736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T10:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: mail sending program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867500#M672737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;packing_list-doc_type   = 'RAW' " 'TXT'.
  packing_list-obj_descr  =  'Material Infotype'.
  packing_list-obj_name   =  'Material Infotype'.
  packing_list-doc_size   =  count * 255.
  APPEND packing_list.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope That Helps&lt;/P&gt;&lt;P&gt;Anirban M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 11:07:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-sending-program/m-p/2867500#M672737</guid>
      <dc:creator>former_member480923</dc:creator>
      <dc:date>2007-10-08T11:07:17Z</dc:date>
    </item>
  </channel>
</rss>

