<?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: sample program to send email in Internal table format using HTML in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605326#M2011336</link>
    <description>&lt;P&gt;hey don’t worry ,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;here comes the new flavour — &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;cl_document_bcs=&amp;gt;create_document(
 i_type ='HTM'
i_hex = lt_body_hex
i_subject = lv_mail_subject )&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;IF NOT lv_sender_email IS INITIAL.
          lo_sender = cl_cam_address_bcs=&amp;gt;create_internet_address( 
                    i_address_string = lv_sender_email ). &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;ENDIF.&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Further you can use send mail method from cl_bcs Abap. &lt;BR /&gt;&lt;/P&gt;&lt;P&gt;That’s not my code in the end I gave reference — Just gave the idea in many SAP system in standard this so_document_send_api in use still&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Shivam &lt;/P&gt;</description>
    <pubDate>Wed, 05 Oct 2022 09:34:22 GMT</pubDate>
    <dc:creator>shivamshukla12</dc:creator>
    <dc:date>2022-10-05T09:34:22Z</dc:date>
    <item>
      <title>sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605318#M2011328</link>
      <description>&lt;P&gt;i Have internal table &lt;/P&gt;
  &lt;P&gt;Employee Employee Name City state &lt;/P&gt;
  &lt;P&gt;123 Test123 CAL CA&lt;/P&gt;
  &lt;P&gt;124 Test124 SHL SH&lt;/P&gt;
  &lt;P&gt;135 Test135 PLAIN NJ&lt;/P&gt;
  &lt;P&gt;Like this I want in table format Believe it works in HTML format, any sample code for the same is appreciated. &lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:32:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605318#M2011328</guid>
      <dc:creator>former_member13114</dc:creator>
      <dc:date>2022-10-03T16:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605319#M2011329</link>
      <description>&lt;P&gt;Haven't tried it but &lt;A href="https://github.com/DryDumbHead/easyHtmlEmail" target="_blank"&gt;this&lt;/A&gt; looks like it could be helpful to your case... yes, basically you need to format the contents yourself, either directly or with the assistance from such a library&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605319#M2011329</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2022-10-03T16:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605320#M2011330</link>
      <description>&lt;P&gt;Thanks  @andrea, looks like a Raw one, will see if I dont find anything&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:41:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605320#M2011330</guid>
      <dc:creator>former_member13114</dc:creator>
      <dc:date>2022-10-03T16:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605321#M2011331</link>
      <description>&lt;P&gt;Simple HTML:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;table border=1 cellspacing=0&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Employee number&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;Name&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;123&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Test123&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;/table&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 03 Oct 2022 17:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605321#M2011331</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-10-03T17:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605322#M2011332</link>
      <description>&lt;P&gt;check this link for answer-  &lt;A href="https://answers.sap.com/questions/2556073/how-to-send-an-internal-table-as-an-attachement-to.html"&gt;Answer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 17:22:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605322#M2011332</guid>
      <dc:creator>shivamshukla12</dc:creator>
      <dc:date>2022-10-03T17:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605323#M2011333</link>
      <description>&lt;P&gt;Awesome Rossi, thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 18:45:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605323#M2011333</guid>
      <dc:creator>former_member13114</dc:creator>
      <dc:date>2022-10-03T18:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605324#M2011334</link>
      <description>&lt;P&gt;Look at &lt;A href="https://www.w3schools.com/html/html_tables.asp"&gt;HTML Tables (w3schools)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 12:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605324#M2011334</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2022-10-04T12:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605325#M2011335</link>
      <description>&lt;P&gt;Wow.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;OCCURS 0.&lt;/LI&gt;&lt;LI&gt;Using function modules for string handling that are now built into ABAP.&lt;/LI&gt;&lt;LI&gt;FORMS.&lt;/LI&gt;&lt;LI&gt;FM SO_NEW_DOCUMENT_ATT_SEND_API1 instead of the CL_BCS classes&lt;/LI&gt;&lt;LI&gt;FM GUI_UPLOAD - obsolete for years&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;BR /&gt;This is not modern ABAP. Some of it is more than 20 years out of date. I'm guessing you got this wonderful snippet from either google or 1994.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 09:23:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605325#M2011335</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2022-10-05T09:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605326#M2011336</link>
      <description>&lt;P&gt;hey don’t worry ,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;here comes the new flavour — &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;cl_document_bcs=&amp;gt;create_document(
 i_type ='HTM'
i_hex = lt_body_hex
i_subject = lv_mail_subject )&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;IF NOT lv_sender_email IS INITIAL.
          lo_sender = cl_cam_address_bcs=&amp;gt;create_internet_address( 
                    i_address_string = lv_sender_email ). &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;ENDIF.&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Further you can use send mail method from cl_bcs Abap. &lt;BR /&gt;&lt;/P&gt;&lt;P&gt;That’s not my code in the end I gave reference — Just gave the idea in many SAP system in standard this so_document_send_api in use still&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Shivam &lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 09:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605326#M2011336</guid>
      <dc:creator>shivamshukla12</dc:creator>
      <dc:date>2022-10-05T09:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: sample program to send email in Internal table format using HTML</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605327#M2011337</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; used cell collapse, Screen looks much better&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 17:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sample-program-to-send-email-in-internal-table-format-using-html/m-p/12605327#M2011337</guid>
      <dc:creator>former_member13114</dc:creator>
      <dc:date>2022-10-17T17:26:21Z</dc:date>
    </item>
  </channel>
</rss>

