How to Send an SMS Command Line

104 1
    • 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.

Source...
Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.