Charset property

This property contains defines the character set of email text. This value also used as a default charset for AddText method.
You may want to set this property if the text of your email contains some non-ANSI symbols.

Example

mail.From = "myemail@email.address.com"
mail.To = "john@email.address.com"
mail.Charset = "iso-8859-1"
mail.Subject = "The confirmation message"
mail.AddText "Your request has been processed"
mail.Send