Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. if (ins_rec(bm_stylist, $arr)) {
  2. require 'PHPMailer/PHPMailerAutoload.php';
  3.  
  4. $mail = new PHPMailer ();
  5.  
  6. $mail->isSMTP();
  7. $mail->Host = 'smtp.gmail.com';
  8. $mail->SMTPAuth = true;
  9. $mail->Username = 'belamelpanama@gmail.com';
  10. $mail->Password = 'belamel1';
  11. $mail->SMTPSecure = 'tls';
  12.  
  13. $mail->From = 'belamelpanama@gmail.com';
  14. $mail->FromName = 'Belamel';
  15. $mail->addAddress($stylist_email, 'Belamel');
  16.  
  17. $mail->addReplyTo('belamelpanama@gmail.com', 'Belamel');
  18.  
  19. $mail->WordWrap = 50;
  20. $mail->isHTML(true);
  21.  
  22. $mail->Subject = 'Belamel: Look Good Feel Good';
  23. // $mail->Body = 'your new password is '.$password.'';
  24. $mail->Body = '
  25. <p><b>Stylist Register</b></p><br>
  26. <p>Hey,' . $stylist_fname . '</p><br>
  27.  
  28. <p><b>Email Id:</b> ' . $stylist_email . '</p>
  29. <p><b>Password:</b> ' . $stylist_password . '</p><br>
  30.  
  31. <p>Thanks for signing up on Belamel as a Stylist. We will soon verify your profile and get back to you in 48 hours! You can check the status of your application in our android or ios app. </p>
  32.  
  33.  
  34.  
  35. <p><b>Follow us<b> for latest trends and hair & beauty pics</p>
  36. <p><b><a href="www.facebook.com" target="_blank"><img src="http://belamel.com/images/facebook.png" height="50" width="50"></a> <a href="https://twitter.com" target="_blank"><img src="http://belamel.com/images/twitter.jpeg" height="50" width="50"></a> <a href="https://instagram.com" target="_blank"><img src="http://belamel.com/images/instagram.jpeg" height="50" width="50"></a> <b> </p><br>
  37.  
  38. <p><b>Belamel | belamelpanama@gmail.com</b></p>
  39.  
  40. ';
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement