Frequently Asked Questions

The FAQ list is a great starting point for basic questions about what you can do with Robo-FTP.

Orange_arrowOrange_arrow Browse the FAQ list now

Knowledge Base

Our searchable knowledge base covers most of the common errors and implementation problems you are likely to encounter.

Orange_arrowOrange_arrow Search the Knowledge Base now

Contact Technical Support

If you can't find the answers you need online, get in touch with our Technical Support staff.

Orange_arrowOrange_arrow Contact Technical Support now

Professional Services

Need more than basic technical support? Our Professional Services team can help you deploy a complete solution.

Orange_arrowOrange_arrow Contact Professional Services now

Sample scripts are provided as-is with no warranty of fitness for a particular purpose. These scripts are solely intended to demonstrate techniques for accomplishing common tasks. Additional script logic and error-handling may need to be added to achieve the desired results in your specific environment.


send_text_message.s

Download

Robo-FTP supports sending emails via SMTP using the CREATEMAIL and SENDMAIL script commands. However, it is also possible to send notifications via SMS, also known as text messaging.

This sample script takes advantage of the fact that all the major cellular carriers provide an email-to-SMS gateway which you may use for free. You simply send an email using this format:

##########@carrier_gateway_domain

########## represents the cell phone number you want to notify and carrier_gateway_domain represents the URL for the email-to-SMS gateway supplied by the cell carrier.

Here is a list of carriers and their gateways:

Alltel             message.alltel.com
Boost Mobile       myboostmobile.com
Cingular/AT&T      txt.att.net
Rogers Canada      pcs.rogers.com
Sprint Nextel      messaging.nextel.com
Sprint PCS         messaging.sprintpcs.com
T-Mobile           tmomail.net
Verizon Wireless   vtext.com
Virgin Mobile USA  vmobl.com

For example, to send a text message to a T-Mobile subscriber with a phone number of 555-555-5555, you simply need to send an email to 5555555555@tmomail.net.


  1  SET from_name = "Acme Widget Co. Sales"
  2  SET from_email = "sales@acme-widget.com"
  3  * subject line will be ignored by most carriers
  4  SET subj = "My Subject"
  5  * Message should be 160 characters or less
  6  SET body = "My message."
  7  SET attach = ""
  8  CREATEMAIL from_name from_email subj body attach
  9  
 10  SET to_name = "Ray Johnson"
 11  SET to_email = "5555555555@vtext.com"
 12  SET server = "smtp.mymailserver.com"
 13  SENDMAIL server to_name to_email /user=smtpid /pw=smtppw

Browse complete list of scripts

Home | Solutions | Professional Services | Technical Support | Download | Company | Contact Us | Partners | Site Map | Terms of Service | Privacy Policy |