How can I send email using UTF-8 encoding. Please note that I need to use it in the text, not in the htmlbody.
Everything works fine if I use it in htmlbody, but when I tried to use textbody. I got the aschii code character
objCDOMailer.TextBody = "test - Rozwiązanie" >> having a problem objCDOMailer.HTMLBody = "test - Rozwiązanie" >> dont have a problem
I used the code below for both of the above.
objMail.BodyPartCharset = "UTF-8"
source share