I came across one requirement from one of my customer, so I decided to share the solution with you all.
In today’s post we will see how we can create multi line mail body for SMTP mail.
Lets start with the solution rather than talking of logic.
Step-1: Create a codeunit for the function or decide where you wish to add this function
Step-2: Define Variables
you may notice that Variable CRLF is defined as Text with Size 2.
Define all other variables that you may require as per your logic.
Step-3: Write the function. Define your parameters and additional codes you may require as per your logic.
In above code notice that I have set last parameter of CreateMessage as FALSE for(HTMLFormatted), this is required else CRLF logic will not work.
Where ever I require New Line I just add CRLF.
Step-4: SMTP Mail Setup I am using as below for live.com, you check with yours SMTP details accordingly.
Yes we are done now you can execute the above function to generate your mails.
I will come up with more details in my upcoming posts, till then keep exploring and learning.
You must be logged in to post a comment.