I simply want to do a line feed so that my message text looks better . Example:

msgText = "Dear John, How are you"

When I use the above code, the message text displays this way in the Email -

Dear John How are you.

I want it to display this way -
Dear John,
How are you.

***********
Microsoft says something about using (0x0d0a) but I can't seem to get it to work. (see Below)

Microsofts Explanation:
For inbound messages, each paragraph is terminated with a carriage return-line feed pair (0x0d0a). For outbound messages, paragraphs can be delimited with a carriage return (0x0d), line feed (0x0a), or a carriage return-line feed pair (0x0d0a). The value of MsgNoteText depends on the currently indexed message, as selected by the MsgIndex property.
**************