Issue while sending string variable with special characters through send secure SMTP mail

Hello All,

I am using send secure SMTP mail activity with html mail body and need to send a string variable contains combination of special characters.
Example : String variable value is &HC<&<>wd#£(ghgsk*)
Send secure SMTP mail activity used with body in html format. When I try to send mail with mail body as :My variable is : variable value then actual received mail body is
My variable is : &HC

Here string variable got truncated . Any hel on this issue is appreciated.

Thanks
Sreenivasulu

  • Any help on this issue is appreciated.

We can escape the string
option 1:
grafik

1 Like

When Project is set to Windows (targetframework) we can also easy use:
grafik

Your variable isn’t getting truncated. Some of those are special characters being interpreted as HTML code.

Try this:

<pre>&HC<&<>wd#£(ghgsk*)</pre>

Or…

system.Web.HttpUtility.htmlencode(yourVar)

1 Like

This option resolved my issue. Thank you @ppr

Thank you @postwick for the solution

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.