Guest User

Untitled

a guest
Jul 21st, 2018
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. smtp_server=smtp.gmail.com
  2. smtp_port=587
  3. error_logfile=error.log
  4. debug_logfile=debug.log
  5. auth_username= mymail@gmail.com
  6. auth_password= mypassword
  7. force_sender= mymail@gmail.com
  8. hostname= localhost
  9.  
  10. smtp_port=587
  11. sendmail_path = ""D:xamppsendmailsendmail.exe" -t"
  12.  
  13. <?php
  14. if (isset($_POST['submit'])) {
  15. $mail = $_POST['email'];
  16. mail("heyd@list.ru", "subject", "message");
  17. }
  18. ?>
  19. <!DOCTYPE html>
  20. <html>
  21. <head>
  22. <title></title>
  23. </head>
  24. <body>
  25. <form method="post">
  26. <input type="text" name="email">
  27. <input type="submit" name="submit">
  28. </form>
  29. </body>
  30. </html>
  31.  
  32. sendmail_path = ""E:xamppsendmailsendmail.exe" -t"
Add Comment
Please, Sign In to add comment