Sending text notification with php?

by 3 replies
4
When someone signs up to join my website the php script sends me an email but I would prefer that it sends me a text message to my phone. Any ideas on how to do that?
#programming #notification #php #sending #text
  • Look into twilio.
    • [1] reply
    • Thanks BDazzler but I figured it out, it's very easy,

      $to = '5555551234@messaging.sprintpcs.com';
      //after the @ is for Sprint service look up email to text for your carrier address
      $subject = 'put subject here';
      $message = 'put message here';
      $headers = "From: email @somewhere.com\n";

      mail($to, $subject, $message, $headers, '-femail@somewhere.com');
  • Personally for my membership website I'm just sending email to my personal email and on mobile I have BlueEmail application which send me notification about new email, so I'm doing that for free and also getting instant notification. Maybe something like that will work for you too.

Next Topics on Trending Feed