body text!!!

I

Ivan

Im using MAPI in VB 6.0 and Outlook to send some messages.
Can you please tell me how can I put more than one line of text in body of mail.

msmMessage.MsgNoteText="Here i wont large text,not just one line"


Thx.........
 
M

Mark S.

Try:

msg = "line 1" & VbCrLf
msg = msg & "line 2" & VbCrLf
msg = msg & "line 3"
' etc.
msmMessage.MsgNoteText = msg
 
I

Ivan

Thank you..........works just write!

Mark S. said:
Try:

msg = "line 1" & VbCrLf
msg = msg & "line 2" & VbCrLf
msg = msg & "line 3"
' etc.
msmMessage.MsgNoteText = msg
 
Top