Skip to Content
Technical Articles
Author's profile photo Prabhjot Bhatia

E-Mail Templates in S/4 HANA

E-Mail communication is very common business requirements in day-to-day life. SAP understands that and comes up with very interesting feature in S/4 HANA (cloud and on premise both) – E-Mail Templates. In this article, I will provide a little overview and a demo of E-Mail templates.

 

What is E-Mail templates ?

With S/4 HANA Output Management, SAP provides E-mail templates to be configured which will be mapped to output types in BRF+. We can maintain HTML and Plain text in different languages in these  E-Mail templates and also, can map a CDS view for handling dynamic variables. This feature would save a lot of hardcoding or other custom ways to maintain E-mail content as done in past. Although in S/4 HANA, SAP uses E-Mail templates specifically in output management, still we can use this feature independent of output configurations and we will see in Demo section below for its usage.

 

Prerequisites:

  • Basic Knowledge of CDS views.
  • Good knowledge of ABAP.
  • Basic understanding of HTML.

 

How to create E-Mail Template?

There is no specific transaction to create email templates but we can create it as a repository object in SE80 transaction as follow:

  1. Select the package ( or Local objects ) and right click.
  2. Select “Create” -> “More” -> “Email Template”

 

However, we can always view/Edit the existing E-Mail templates from program SMTG_WB_START.

Different Component in E-Mail templates:

Header –

  • We need to maintain a name / description for the email template.
  • Also, we can maintain a CDS view which should be pre-delivered and can be used to provide dynamic variables in email content (body or subject).

Texts-

  1. Languages             Maintain Email in different languages
  2. CDS Fields             Set of CDS view fields used in Email content
  3. Email Subject         Email subject description
  4. Body HTML            Email body content in HTML
  5. Body Plain Text      Email body content in plain text

Dynamic Variables in E-mail Content:

For maintaining dynamic variables, we would need to create a CDS view which would contain the required data. For each different email variables, we can pass CDS key with Name/Value pair to Email Template API classes and replace the variables with desired content very easily.

  • Create a CDS view ZRSCDS_INVOICE_DATA (for demo, I took reference of billing document header and Item tables).
@AbapCatalog.sqlViewName: 'ZRSCDS_INVDATA'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Invoice Data Line Item wise' 
//@VDM.viewType:#BASIC
define view ZRSCDS_INVOICE_DATA 
as select from vbrk as zzrs_vbrk
join vbrp as zzrs_vbrp
    on zzrs_vbrk.vbeln = zzrs_vbrp.vbeln 
{
 key zzrs_vbrk.vbeln,
 key zzrs_vbrp.posnr,      
     zzrs_vbrk.fkart, 
     zzrs_vbrk.vbtyp,
     @Semantics.currencyCode: true
     zzrs_vbrk.waerk, 
     zzrs_vbrk.vkorg, 
     zzrs_vbrk.fkdat,    
     @Semantics.amount.currencyCode: 'waerk' 
     @DefaultAggregation: #SUM
     zzrs_vbrk.netwr, 
     zzrs_vbrk.kunag as kunag,      
     zzrs_vbrp.fkimg, 
     zzrs_vbrp.vrkme, 
     zzrs_vbrp.meins, 
     zzrs_vbrp.matnr         
}
  • Add this CDS view in Email template Header.

  • Assign CDS view fields in E-Mail Body and Subject where ever required.

 

Email Preview-

We can always preview our email template how it will look once sent to customers by clicking on “preview” button as highlighted:

 

How to call E-Mail Templates ?

Till now, I have created E-mail templates in system. Now, I would like to integrate this in one of the calling programs which send email to customers and email content will be taken from templates. For the demo purpose, I created a simple program where I can pass receiver email address, E-Mail Template, Language and CDS Key ( Billing Document in our case ).

SAP has provided E-Mail template API class which can be instantiated and used to get email content. Steps are as follow:

  • Create instance of class CL_SMTG_EMAIL_API.
DATA(lo_email_api) = cl_smtg_email_api=>get_instance( iv_template_id = p_em_id  ).
  • Create instance of class CL_BCS.
DATA(lo_bcs) = cl_bcs=>create_persistent( ).
  • Prepare CDS view Key table with Key Field name and value.
DATA(lt_cds_key) = VALUE ty_gt_data_key( ( name = 'vbeln' value = p_vbeln ) ).
  • Integrate E-Mail subject and body with email instance
lo_email_api->render_bcs( io_bcs = lo_bcs iv_language = p_spras it_data_key = lt_cds_key ). 
  • Set Sender, receiver and send the email.
  " Set Email Sender
  DATA(lo_sender) = cl_sapuser_bcs=>create( sy-uname ).

  lo_bcs->set_sender( i_sender = lo_sender ).

  " Set Email Receiver(s)
  DATA(lo_recipient) = cl_cam_address_bcs=>create_internet_address( p_rec ).
  lo_bcs->add_recipient( EXPORTING i_recipient = lo_recipient ).

  " Send Email
  lo_bcs->send( ).

 

Selection-Screen of Demo Program :

 

Result Email with replacement of dynamic variables :

 

 

Assigned Tags

      46 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Ibrahim Khan
      Ibrahim Khan

      Hi prabhjot,

      Excellent blog, can you please let me know how to embed images to the email template?

       

      Regards

      IK

      Author's profile photo Sandra Rossi
      Sandra Rossi

      I guess you can do it in two steps:

       

      1. Position the image where you want in the body HTML, and assign it any CID name you want (Content-ID):

      <img src="cid:any-name-you-want">

       

      2. in the ABAP code, get the email HTML by using the method RENDER instead of RENDER_BCS, and create the document from scratch via BCS by using multipart, one part being the image to which you assign the Content-ID chosen in the first step.

       

      lo_email_api->render( IMPORTING ev_body_html = DATA(body_html) ).
      
      DATA(body_html_soli) = cl_bcs_convert=>string_to_soli( body_html ).
      
      DATA(multipart) = NEW cl_gbt_multirelated_service( ).
      multipart->set_main_html
          EXPORTING
            content     = body_html_soli
            description = 'descriptionhtml'.
      multipart->add_binary_part
          EXPORTING
            content      = image_png_solix " BYTES OF IMAGE (PNG or other type)
            filename     = 'filename.png'
            extension    = 'PNG'
            description  = 'descriptionpng'
            content_type = 'image/png'
            length       = l_len
            content_id   = 'any-name-you-want'.
      DATA(doc_bcs) = cl_document_bcs=>create_from_multirelated(
              EXPORTING
                i_subject          = 'email subject'
                i_multirel_service = multipart ).
      lo_bcs->set_document( doc_bcs ).
      ...

       

      Addendum October 15, 2019:

      There's a second option:

      You may also hardcode the image inside the body HTML with <img src="data:image/png;base64,HERE-BASE64-OF-IMAGE">. The advantage is that there's no ABAP code and the image is displayed if you preview the email, but the body HTML is difficult to maintain because it's full of base64 characters.

      Example:

      <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
      
      <html>
      <head>
        <meta name="generator" content="HTML Tidy for SAP R/3 (vers 25 March 2009), see www.w3.org">
      
        <title></title>
      </head>
      
      <body>
      Text before icon. Icon "LEFT ARROW": <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAIAAADUsmlHAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAVklEQVR42mN88/IGA7mAiYECMAg1uza+JVMzMTqxayZSJwMDAyNaVBGjc3e9MBabibcTXTOpOlE0wx1DZlSRqp8RM23D3U/QLCY8gUlmIiFSP+PQzJIA5rYeiLeQLUYAAAAASUVORK5CYII=">. Text after icon.
      </body>
      </html>
      
      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      Thanks Sandra.

      I already used option1 in the demo example. and It’s really helpful and good to know about option 2. I will try to integrate it in my applications now.

      But in this case, we can't use email templates.

       

      Author's profile photo Sandra Rossi
      Sandra Rossi

      I'm confused about "option 1" and "option 2": are you talking about RENDER_BCS versus RENDER, or are you talking about the two steps of the solution I proposed (which are not options 1 and 2, it's steps 1 and 2)?

      In which case can't we use email templates?

      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      I misunderstood that .

      I meant I used the step 1 in the demo example. I generated the image URL separately and added the url in HTML directly as <img src = imageURL> .

      In that case, I didnt need to use step 2 and that's the real use of E-Mail templates -to customize email body content( plain or HTML ) and call that in applications.

      I hope it clarify the confusion.

      Author's profile photo Julio Ferrero Flores
      Julio Ferrero Flores

      hi,

      Could you, please, tell me how it does what you indicate above? (I meant I used the step 1 in the demo example. I generated the image URL separately and added the url in HTML directly as <img src = imageURL> )

      I upload the image to MIME repository but i don´t know how to create the url of the image.

      Regards

      Author's profile photo Neelesh Jain
      Neelesh Jain

      Thanks Prabhjot for very useful and self-explanatory blog.

      can you confirm whether CSS can also be attached?

       

       

       

      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      Thanks Neelesh.

      I have used CSS stsylehseet in the HTML in the example in this blog.

            <style type="text/css">
                    
      /* Client-specific Styles */
               #outlook a {padding:0;} /* Force Outlook to provide a "view in browser" menu link. */
               body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;}
                      
               /* Prevent Webkit and Windows Mobile platforms from changing default font sizes, while not breaking desktop design. */        
               #backgroundTable {margin:0; padding:0; width:100% !important; line-height: 100% !important;}
               img {outline:none; text-decoration:none;border:none; -ms-interpolation-mode: bicubic;}
               a img {border:none;}       
               /*p {margin: 0px 0px !important;}*/
               table td {border-collapse: collapse;}
               table {border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;  }
               a {color: #193c6b;text-decoration:none;} 
               
               /* Our Styles */
               body {font-family: Calibri, Arial, sans-serif;}
      		 .csLink a {color:#666666!important;text-decoration:none!important;}
      		 .csNr a {color:#193c6b!important;text-decoration:none!important;}
      		 .csNr2 a {color:#333333!important;text-decoration:none!important;}
              
               a[x-apple-data-detectors] {
                  color: inherit !important;
                  text-decoration: none !important;
                  font-size: inherit !important;
                  font-family: inherit !important;
                  font-weight: inherit !important;
                  line-height: inherit !important;
              }
                /*IPAD STYLES*/
                @media only screen and (max-width: 640px) {             
                  table.devicewidth, img.gradientbottom  {width: 440px!important;}
                  table.devicewidthinner, table.prow {width: 400px!important;} 
      			img.space20{width:20px!important;}
      			img.imggradient {width:212px!important;}
      			img.bannerimg {width:440px!important;height:73px!important;}
      			.removeTablet{display:none!important;}
      			td.padleft {padding-left:0px!important;}
               }
               
               /*IPHONE STYLES*/
               @media only screen and (max-width: 480px) {
                   table.devicewidth, img.gradientbottom  {width: 320px!important;}
      			 table.devicewidthinner{width: 280px!important;}
                   img.imggradient {width:92px!important;}
      			 img.bannerimg {width:320px!important;height:53px!important;}
      			 .headline{font-size:14px!important;text-align:left!important;}
      			 
      			}			      
                  
            </style>

      I am not sure whether you want to use CSS explicitly as SAP has given option to add HTML files in the body HTML. But we can always integrate CSS in HTML and use here.

       

      Author's profile photo Michael Keller
      Michael Keller

      When I used class CL_BCS to create HTML mail there was some strange situation: Only inline CSS was ok to use in the body. It wasn't a problem of CL_BCS but of the mail clients like Outlook. Don't know if this is important in this context.

      Author's profile photo Raza Hassan
      Raza Hassan

      Hi Prabhjot,

       

      Very nice and informative article. Please let me know if there is a way to add CC and BCC recipients in email?

      Also, how to add system attachments via this class?

      Thanks in advance.

      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      Thanks Raza.

      E-Mail templates are only used to configure E-Mail content which is Email Body and Subject.

      Sender information with different roles TO,CC,BCC are not covered in this. You need to define or configure these information on your application where you will call email templates.

      Same for attachments 🙂

       

      Author's profile photo Former Member
      Former Member

      That should be same way as we do with the BCS class, this is only to handle the e-mail body template. Right?

      Author's profile photo Timo Sandlass
      Timo Sandlass

      Hi Prabhjot Bhatia,

      in the last few Weeks i am developing a Fiori App which uses the new E-Mail Templates, but for certain time i have problems with the text Replacement.

      If you do a little research, you will quickly find, that the Replacement of the dynamic variables will happen in the APPLY( )-method of CL_SMTG_EMAIL_RENDERER. In my opinion it doesn't matter whether you call APPLY( ) directly or indirectly via BCS as long as you supply the method correctly.
      But i have a big Problem with the Replacement of some Fields.

      Most of the Fields are replaced without any problem, except two types: dates and currency amounts. Both have one in common: they have a differen internal format and an external format. Dates can be displayed in different shapes, depending on your systems customizing in table T005X . But every time i want to replace a date, e.g. a date of DDIC-type BLDAT it only displays the internal format like 20191015 instead of 15.10.2019 or 10/15/2019 etc.
      Even by debugging and modifying some things i was unable to get the system to replace the variable with the external format.

      In the coding at CL_SMTG_EMAIL_RENDERER in his private Method FORMAT_FIELD_VALUE i found following comment: "DATS field is not converted currently as the date format of the *receiver* of the mail template is not knwown... Using the format of the currently logged in user may not be appropriate." But this is exactly what i want to happen.

      Is there any possibility to do so or do i have to implement the replacement in my application by myself?

      Thanks in advance

      Author's profile photo Arun Reddy
      Arun Reddy

      Hi Prabhjot,

      Thanks for the nice blog.

      Can we add table in the template with dynamic variables in the table?

      Thanks in advance.

       

      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      Hi Arun,

      Thanks for reading.

      Since dynamic values are filled from CDS views, I don't think you can add tables in dynamic variables. 

      Do you have any real time example where tables are required as dynamic variables?

      Thanks and regards,

      Prabhjot

      Author's profile photo Gurpreet Singh Jaspal
      Gurpreet Singh Jaspal

      Hi Prabhjot Bhatia,

      I have a similar query. CDS can also return multiple records therefore can that be added as part of a tabular section in the email. For example, consider that there is a requirement to send the open invoices at end of every month to all customers. Is there any way this can be achieved to get an output like below?

      example CDS Structure with association to customer master as _customer

      {

      key inv_no,

      key payer,

      amount,

      date,

      //associations

      _customer

      }

       

      Dear {_customer.customer_first_name},

      Please find your open inoices for period {period}.

      Invoice Number                             Date                 Amount

      {inv_no}                                          {date}                {amount}

      Thanks

      Finance Team

       

      Regards

      Gurpreet

       

      Author's profile photo shrikant more
      shrikant more

      Hi Prabhjot Bhatia,

       

      Thanks for your article.its really helpful.

      is it possible to display a table in the Email Template?

      as I tried but unable to get the option for that.

       

      Regards,

      Shrikant More.

      Author's profile photo Timo Sandlass
      Timo Sandlass

      Hey Shrikant,

      as far as i know E-Mail-Templates fully support HTML. Did you already tried to use HTML for creating a Table? If you don't know how this works out in HTML there are plenty of good Tutorials out there, i.e.W3Schools where i always look up stuff like that.

      And in these tables you are free to use any given data from your CDS View.

      I did't tried out but for tables of variable length you could modify the mails HTML-Body with your ABAP-Code and insert another row for each row of your datatable (e.g. internal table).

      Regards,

      Timo

      Author's profile photo Varun Jain
      Varun Jain

      HI Prabhjot Bhatia ,

      by any change can it be integrated with classes or dynamic tables . Use case I am working on SAP MDG and here tables are dynamic so we want to read table we need to class method to get data no other possible way to read .

      If that is possible then that will be big assets as email is frequent requirement we have  at any project we do.

      BR,

      Varun

      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      Hi Varun,

      If I understand correctly, you want email data dynamically instead of depending on data driven cds fields. If yes, it's possible to integrate those fields and populate the data independent of cds view data.

      Thanks,

      Prabhjot

      Author's profile photo Sathya Prabhu Narayanasamy
      Sathya Prabhu Narayanasamy

      Hello Prabhjot,

       

      Thanks for the blog.

      How can pass the data to the E-Mail template independent of the CDS. I am calling the template from report program where I need to generate an FIORI URL and append it to a table. Generation of URL is not possible in AMDP, so I have to do it via ABAP.

      Essentially E-Mail with table consists of data and URL in a cell on every row.

      Thanks,

      Sathya

      Author's profile photo Varun Jain
      Varun Jain

      HI Prabhjot Bhatia ,

      Correct , so I take example of Material , I would like to send Materiel related field data at email body , but during MDG process this data wont be available at MARA table it would at some temp table which generates dynamically at each system and only way to read is via MDG APIs.

      I am sure CDS view , but can CDS view call an standard API and get data or I create rapper api and which can feed to CDS view ?

      Regards,

      Varun

      Author's profile photo Former Member
      Former Member

      CDS is a data modelling technique no it can not call any API.

      Author's profile photo Martin Maida
      Martin Maida

      Hello all (  Prabhjot Bhatia )

       

      Someone can help me?

       

      I need to create a Email template and into the body include a list of documents.

       

      So, i should include in the template a TABLE.

       

      I was debugging the std class but, when recover the information from CDS, always is with ONE RECORD ( not getting the list of documents)

       

      Is it possible to send an email with a table with severals records?

       

      thanks in advance 

       

       

      Author's profile photo Former Member
      Former Member

      table with several records should ideally be in an attachment not the email body though it is possible using <table> of html. thanks

      Author's profile photo Sushnata Satpathy
      Sushnata Satpathy

      Hello @Prabhjot Bhatia

      Thank you for this helpful blog .

      Is this possible in  ECC 702 version.

       

      Thank you  in advance

      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      No.. It's only available from 7.5 version specifically to be used by SAP in new Output Management in S/4 HANA.

      Author's profile photo Ratul Chakraborty2
      Ratul Chakraborty2

      Nice one

      Author's profile photo fabrizio comuzzi
      fabrizio comuzzi

      Hi Prabhjot,

      Excellent blog!

      Is it possible to pass data to template variables directly from the invoking code instead of using a CDS view?

      Class CL_SMTG_EMAIL_API has a method RENDER_BCS_W_DATA. It looks as this is what I need but there is no documentation about how to use the method.

      Do you have any idea?

      Thanks in advance

      Fabrizio

       

      Author's profile photo Prabhjot Bhatia
      Prabhjot Bhatia
      Blog Post Author

      Thanks..

      I have used method RENDER_BCS_W_DATA and I will post a new blog to cover a business scenario. I agree with you regarding documentation for these topics but we also need to understand that these things are quite new and SAP is still doing/releasing OSS notes based on customer's requirements.So these blogposts would be better place for any documentation.

       

      Author's profile photo Thorsten Wöhrle
      Thorsten Wöhrle

      Hello Fabrizio,

      I tried to use method RENDER_BCS_W_DATA. My idea was to user these fields also in the email template.

        ls_comp-name = 'FIELD1'.
        ls_comp-type ?= cl_abap_typedescr=>describe_by_name( 'CHAR10' ).
        APPEND ls_comp TO lt_comp.
        ls_comp-name = 'FIELD2'.
        ls_comp-type ?= cl_abap_typedescr=>describe_by_name( 'CHAR12' ).
        APPEND ls_comp TO lt_comp.
      
      
        DATA(lo_struct) = cl_abap_structdescr=>get( p_components = lt_comp ).
        CREATE DATA lr_data TYPE HANDLE lo_struct.
        ASSIGN lr_data->* TO FIELD-SYMBOL(<ls_data>).
        ASSIGN COMPONENT 1 OF STRUCTURE <ls_data> TO FIELD-SYMBOL(<fs_value>).
        <fs_value> = 'Value 1'.
        ASSIGN COMPONENT 2 OF STRUCTURE <ls_data> TO <fs_value>.
        <fs_value> = 'Value 1'.
      
        lo_email_api->render_bcs_w_data(
            EXPORTING
              io_bcs      = lo_bcs
              iv_language = 'D'
              ir_data     = lr_data  ).

      But if the fields are not part of the CDS view, the matches are deleted.
      This method can only be used, to fill the values which are part of the CDS view.

      Author's profile photo Patrick Weber
      Patrick Weber

      Hello Thorsten,

      may I ask you to show some more code? I also want to use some data from CDS View, but others should be set by code. To my understanding, this is what you've solved here.

      The code you've shown above doesn't have any relation to CDS view anymore.

      It would be really great, if you can provide a sample code of how to achieve this.

      Patrick

      Author's profile photo Thorsten Wöhrle
      Thorsten Wöhrle

      Hello Patrick.

      In my exmaple only varialbes are used, which are filled from code. Field CDS view is not filled.

      subject%20mail%20template

      subject mail template

       

      Variables and their values are maintained with an internal table.

      *---------------------------------------------------------------*
      *+++ Fill table to replace variables in Emmail template
      *---------------------------------------------------------------*
      ...
        it_email_tpl_vars_cdskey = VALUE #( ( name = 'MATNR' value = ycl_me6_material_helper=>set_matnr_output_format( iv_matnr_in = p_matnr ) ) 
      ...
      

       

      This is a central method to replace the variables with the corresponding content from IT_EMAIL_TPL_VARS_CDSKEY:

      *== Email text: subject and body
          CLEAR: ev_subject, ev_subject_long, et_html_text, et_plain_text.
      
      *== Für Referenzierung noch ohne SprachBezug
          TRY.
              DATA(lo_email_api) = cl_smtg_email_api=>get_instance( iv_template_id = iv_email_template  ).
              DATA(ls_email_template) = lo_email_api->get_detail( ).
              DATA(lo_email_template) = cl_smtg_email_template=>get( iv_email_template  ) .
              DATA(lo_email_renderer) = cl_smtg_email_renderer=>get_instance( io_template = lo_email_template ).
      *== IF field CDS View is maintainded, the key fields are maintainend in import table IT_VARIABLEN to to replace the variable         lo_email_renderer->apply(
                EXPORTING
                  it_data_key   = COND #( WHEN ls_email_template-header-cds_view IS NOT INITIAL THEN it_email_tpl_key_vars )
                  iv_language   = iv_email_tpl_langu
                IMPORTING
                  ev_subject    = DATA(lv_subject)
                  ev_body_html  = DATA(lv_body_html)
                  ev_body_text  = DATA(lv_body_text)
                  et_attachment = DATA(lt_attachment) ).
            CATCH cx_smtg_email_common INTO DATA(lx_email).
              RAISE EXCEPTION TYPE ycx_so5_general USING MESSAGE.
              RETURN.
          ENDTRY.
      *== If field CDS View is empty, variables of table it_email_tpl_key_vars replaced
          IF ls_email_template-header-cds_view IS INITIAL.
            LOOP AT it_email_tpl_key_vars INTO DATA(ls_data_key).
              REPLACE ALL OCCURRENCES OF |{ mc_sqbracket_start && ls_data_key-name && mc_sqbracket_end }|:
                                          IN lv_subject WITH ls_data_key-value,
                                          IN lv_body_html WITH ls_data_key-value,
                                          IN lv_body_text WITH ls_data_key-value.
            ENDLOOP.
          ENDIF.

      Maybe this can be adjusted to use CDS views and own variables.

       

      Regards

      Thorsten

      Author's profile photo Patrick Weber
      Patrick Weber

      Thank you Thorsten for this great example.

      I was able to get RENDER_BCS_W_DATA running but it's like you said, if a field is not part of CDS view, it gets ignored. To use it, we have to define these code-filled fields as empty fields in CDS View.

      Your code looks more clean as you don't need to define dynamic table anymore.

      Author's profile photo Former Member
      Former Member

      Thank you Prabhjot Bhatia , I was looking for something like this. Great work!!!

      regards,

      Prasenjit

      Author's profile photo Mayank Sharma
      Mayank Sharma

      Hi Prabhjot,

      Nice blog on Email Templates!!

      i had one question is it a clean core approach since in S/4HANA cloud you dont have option to create custom e-mail template ?

      Regards,

      Mayank

      Author's profile photo Jelena Perfiljeva
      Jelena Perfiljeva

      I'm not an expert but watching this openSAP video on email templates for Flexible Workflow in S/4 Cloud and it does talk about custom templates: https://microlearning.opensap.com/media/How+to+Set+Up+the+E-mail+Notification+for+Flexible+Workflow+-+SAP+S+4HANA+Cloud/1_3yuvoayt

      So I'm curious where you got the information that there is no such option.

      Author's profile photo Ahmad Faidzal Abdullah Thalith
      Ahmad Faidzal Abdullah Thalith

      Hi Jelena Perfiljeva , Prabhjot Bhatia,

      May I know if this approach still consider clean core in 2023?

      Author's profile photo Ashok Kumar
      Ashok Kumar

      Hello Prabhjot Bhatia,

      Excellent Blog.

       

      Could you Please Tell how to add images in the Email Template,

      I checked the Solution that you provided in this Blog But Unfortunately I am not able to add Image in the Email Template.

      So could you please Explain how to add Image in the Email Template

       

      Regards

      Ashok Kumar

      Author's profile photo Aditya Waghmare
      Aditya Waghmare

      Just follow the second option in this comment by Sandra Rossi

      Convert your desired image into Base64 (you can use this site or google for any other). Copy the base64 code and use it as sandra used it here:

      <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAIAAADUsmlHAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAVklEQVR42mN88/IGA7mAiYECMAg1uza+JVMzMTqxayZSJwMDAyNaVBGjc3e9MBabibcTXTOpOlE0wx1DZlSRqp8RM23D3U/QLCY8gUlmIiFSP+PQzJIA5rYeiLeQLUYAAAAASUVORK5CYII=">.

      Just replace the part after 'base64 ,' with your actual base64 code of image

      Author's profile photo Pratham Kapoor
      Pratham Kapoor

      Hi Aditya Waghmare ,

       

      I have tried the same approach for 'Maintain Email Templates' but it doesn't work. Could you please provide any other alternative to display the image in Email Body.

      I found one solution where an image can be imported in MIME repository and generated URL can be attached in IMG SRC tag but this URL would be static and have to change in every environment.

      Thanks for your response in advance.

      With Best Regards,

      Pratham Kapoor

      Author's profile photo Aditya Waghmare
      Aditya Waghmare

      Hi Pratham,
      You must be doing some mistake as I am able to embed image via Base 64.
      Did you add the base64 code this way: <img src = "base_64code">?

      You can try and copy this email body in your system and see if it is working for you or not:

      <!DOCTYPE html>
      <html>
      <head>
        <meta name="generator" content="HTML Tidy for HTML5 for ABAP version 5.6.0">
        <title></title>
      </head>
      <body>
      Hi Recipient, <br>
      This demo template is an example of embedded Base64 image: <br>
        <img src="data:image/png;base64,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">
      </body>
      </html>
      

      Preview of Email:
      Email%20preview%20of%20Base64%20image

      Email preview of Base64 image

       

      Author's profile photo Pratham Kapoor
      Pratham Kapoor

      Thanks Aditya Waghmare for your quick response.

      Yes, in preview I wasn't able to see the image but when I send the email in Manage Dispute Cases, I can see the image. It resolves my query.

      Regards,

      Pratham Kapoor

      Author's profile photo ana osako
      ana osako

      Hi,

       

      someone could post an example with multiple lines in cds wich can use in htlm template?

      Author's profile photo B. Blei
      B. Blei

      Hello Prabhjot Bhatia, nice blog!

       

      I have a question regarding adding (multiple) attachments.

      How would you do this when working with OPM en Adobe?

      Is this also possible in the email template?

      Were would I create the code to add additional attachments to the emai?

      Kind regards,

      Berry Blei

      Author's profile photo prasanth p
      prasanth p

      Hi Prabhjot Bhatia,

      Excellent Blog.

      I have one question, Is it possible to add System fields to the email template for ex : sy-sysid to the email template subject and text?

      Thanks,

      Prasanth