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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top