Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $phonenum = "16783293991"; //works if 6783293991
  2. $from_name = "Gregory Smith";
  3. $from_email = "myemail@gmail.com";
  4. $from = sprintf ("From: %s <%s>nSender: %s <%s>nContent-Type: text/plain; charset="UTF-8"nContent-Transfer-Encoding: 8bitn", $from_name, $from_email, $from_name, $from_email);
  5. $to = $phonenum;
  6. $formatted_number = $to."@messaging.sprintpcs.com";
  7. mail("$formatted_number", "", "$message", $from); //the empty field of "" is the subject line and is unnecessary
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement