Android Question SMTP Net lib problem?

G-ShadoW

Active Member
Licensed User
Longtime User
Why I can send chr "=" using net library ?

Sm.Body = "======"'
Sm.Send

Result empty message!
 

Peter Simpson

Expert
Licensed User
Longtime User
Hello,
I'm not sure if this is 100% the correct way to do this, but this is how I get the = (equal sign) to show in emails.

First make sure that .HtmlBody = True (in your case Sm.HtmlBody = True)
Next replace the = (equal sign) with =

Sm.Body = "Test body message = True" will show Test body message = True in your email.
 
Upvote 0
Top