Guest User

Untitled

a guest
Dec 17th, 2017
738
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $email = 'xyz@email.com,abc@email.Com,and others@email.com';
  2. AND
  3. $msg = 'SEND these to each email above thanks';
  4.  
  5. $to = 'xyz@email.com';
  6. $msg = 'SEND these to each email above thanks';
  7. $to = 'abc@email.com';
  8. $msg = 'SEND these to each email above thanks';
  9. $to = 'others@email.com';
  10. $msg = 'SEND these to each email above thanks';
  11.  
  12.  
  13.  
  14. foreach($email as $email)
  15. {
  16. $to = $email["to"];
  17.  
  18.  
  19. $subject = 'the subject';
  20. $message = '$msg';
  21. $headers = 'is this really? ';
  22. mail($to, $subject, $message, $headers);
  23.  
  24. }
Add Comment
Please, Sign In to add comment