How can i send email by using UTF-8 charset. Kindly note that I need to use it in textbody and not in htmlbody.
Everythings working fine if I uses it in htmlbody bu
use
bjCDOMailer.TextBodyPart.Charset = "utf-8"
for charcter encoding.
objCDOMailer.BodyPart.Charset = "utf-8"
objCDOMailer.HTMLBodyPart.Charset = "utf-8"
Above's are not working .
Try setting the encoding individually for TextBody and HTMLBody
objCDOMailer.BodyPart.Charset = "utf-8"
bjCDOMailer.TextBodyPart.Charset = "utf-8"
objCDOMailer.HTMLBodyPart.Charset = "utf-8"