Email Text Message

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I want to send a text message in Excel using VB. The mail
program is Netscape. I have figured out how to email a
workbook, but I can not figure out how to just send a text
message, without attaching a workbook. Can anyone help?
 
Steve

You can create a mailto hyperlink and execute that. For instance

Dim mylink As String

mylink =
"mailto:[email protected]?subject=This%20is%20a%20test&body=Hello"

ThisWorkbook.FollowHyperlink mylink
 
Back
Top