In
Wink20TCU said:
Is there a way to do the following in the message text portion of a
send object macro?
Macro, not VBA code? Yes, in a macro you can set the Message Text
argument to an expression beginning with an equals sign (=), like this:
="Line 1 of message" & Chr(13) & Chr(10) & "Line 2 of message"
If you want a blank line between the two, add an extra Chr(13) & Chr10)
:
="Line 1" & Chr(13) & Chr(10) & Chr(13) & Chr(10) & "Line 2"
I don't know what you mean. You can add a URL as part of the text of
your message body. If you begin it with "http://", then the receiver's
e-mail client will probably interpret it as a clickable hyperlink.