Put a List of Fields and Values in the Message Body

To add a list of fields and values in the body of an item, define a variable to contain the string, and then use Outlook properties that refer to the field you want to include. For example, to include the To field in the message body, use the following.

Chr(13)

is the return character.

MessageString = "This letter is sent to " & Item.To & Chr(13) 
MessageString = MessageString & "second line goes here" 
Item.Body = MessageString

Suporte e comentários

Tem dúvidas ou quer enviar comentários sobre o VBA para Office ou sobre esta documentação? Confira Suporte e comentários sobre o VBA para Office a fim de obter orientação sobre as maneiras pelas quais você pode receber suporte e fornecer comentários.