Hi Guys, I am sending mail to the customers. And the format is like this:
Name: abc. Company:ccc. Address: sde.
So the mail is coming out in continuous format which I don't want.
I want it in this format:
Name: abc.
Company:ccc.
Address: sde.
I'm currently using string.format to populate each of the values and later on replacing '.' with '\n'.
However, it looks like that is not working.
Any suggestions on how to make it look like this?