Body property
This property contains the whole email text, excluding subject.
In spite of this property allows both reading and writing, it's not recommended to modify this property
directly. You can use the AddText and AttachFile
methods to modify the body property.
The text stored in the Body property can be wrapped on the specified amount of symbols. This behavior depends on
declared text type and on WrapSize property value.
Example
mail.From = "myemail@email.address.com"
mail.To = "john@email.address.com"
mail.Subject = "The confirmation message"
mail.AddText "Your request has been processed"
mail.Send