Purpose
Appends the specified string to the AltBody of a message.
AltBody text is only used in certain circumstances and is generally in HTML format for rendering by a true HTML engine.
You can call AddAltBodyText multiple times to add additional text.
Syntax
Message.AddAltBodyText ("<HTML>String</HTML>")
Example
Dim MyMessage As Email
...
MyMessage.To="Joe User"
MyMessage.Subject="Testing"
MyMessage.AddAltBodyText("<HTML>First bit of AltBody text.")
MyMessage.AddAltBodyText("Second bit of AltBody text.</HTML>")
MyMessage.Send
|