G-ShadoW Active Member Licensed User Longtime User Jan 26, 2015 #1 Why I can send chr "=" using net library ? Sm.Body = "======"' Sm.Send Result empty message!
Peter Simpson Expert Licensed User Longtime User Jan 27, 2015 #2 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
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.