Tuesday, May 13, 2014

How to Send an SMS Command Line


1. Open 'Notepad' on your PC.
2. Type the following:'Set objEmail = CreateObject('CDO.Message') objEmail.From = 'yourname@domainname.com' objEmail.To = 'cellphonenumber@cellcompany.com' objEmail.Textbody = 'SMS message.' objEmail.Send'The two sets of quotation marks surrounding the command line do not need to be typed, but all the quotation marks on the inside of the command line do need to be typed.
3. Replace the 'yourname@domainname.com' with your email address and replace 'cellphonenumber@cellcompany.com' with the recipient's SMS email address. (See Resources.) Remember to keep the quotation marks around the addresses when you type them in your computer.
4. Save the file as 'name.vbs.' Double-click the file to send it. You do not need to include the quotation marks around the name of the file.

No comments:

Post a Comment