I'm having a problem sending e-mail in dnn4.8.4. from a scheduled task
The call is -
Dim message As New StringBuilder
---Message is built up
Dim result As String = Mail.SendMail(HostSettings.GetHostSetting("HostEmail"), emailRecipent, "", emailSubject, headerText & message.ToString & trailingText, "", "html", "", "", "", "")
Text stored in the history log file from message.ToString()
<table border="1"><tr><td colspan=2 align=center>....
Text recieved in GMAIL
<table border=3D"1"><tr><td colspan=3D2 align=3Dcenter>....
In every e-mail that my code has sent, all equals characters have been replaced with "=3D". Any suggests as to what I'm doing wrong?
Tom