Advertisement
Guest User

Untitled

a guest
Apr 25th, 2016
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. registered owner : Microsoft / Microsoft
  2. operating system : Windows 7 x64 Service Pack 1 build 7601
  3. system language : English
  4. system up time : 5 hours 1 minute
  5. program up time : 5 minutes
  6. processors : 4x Intel(R) Core(TM) i3-4160 CPU @ 3.60GHz
  7. physical memory : 1186/3968 MB (free/total)
  8. free disk space : (C:) 116.21 GB
  9. display mode : 1024x768, 32 bit
  10. process id : $1e74
  11. allocated memory : 10.56 MB
  12. executable : sendmail.exe
  13. exec. date/time : 2011-06-18 01:10
  14. compiled with : Delphi 2006/07
  15. madExcept version : 3.0l
  16. callstack crc : $205f8196, $4436e8c2, $4436e8c2
  17. exception number : 1
  18. exception class : EInOutError
  19. exception message : I/O error 105.
  20.  
  21. main thread ($203c):
  22. 004b675c +18a8 sendmail.exe sendmail 922 +440 initialization
  23. 76ee013e +000a ntdll.dll KiUserExceptionDispatcher
  24. 0040474d +001d sendmail.exe System 262 +0 @AfterConstruction
  25. 0043dada +01fe sendmail.exe IdIOHandler 1508 +60 TIdIOHandler.ReadFromSource
  26. 0043d559 +0159 sendmail.exe IdIOHandler 1315 +57 TIdIOHandler.ReadLn
  27. 0043d380 +0024 sendmail.exe IdIOHandler 1233 +1 TIdIOHandler.ReadLn
  28. 0043d837 +0073 sendmail.exe IdIOHandler 1428 +10 TIdIOHandler.ReadLnWait
  29. 0044035d +0059 sendmail.exe IdTCPConnection 768 +7 TIdTCPConnection.GetInternalResponse
  30. 0043fea3 +0013 sendmail.exe IdTCPConnection 564 +1 TIdTCPConnection.GetResponse
  31. 004403fd +002d sendmail.exe IdTCPConnection 788 +4 TIdTCPConnection.GetResponse
  32. 0045ab97 +0033 sendmail.exe IdSMTP 375 +4 TIdSMTP.Connect
  33. 004b5f14 +1060 sendmail.exe sendmail 808 +326 initialization
  34. 769433c8 +0010 kernel32.dll BaseThreadInitThunk
  35.  
  36. thread $2170:
  37. 76ef0146 +0e ntdll.dll NtWaitForMultipleObjects
  38. 769433c8 +10 kernel32.dll BaseThreadInitThunk
  39.  
  40. thread $1824:
  41. 76ef1f2f +0b ntdll.dll NtWaitForWorkViaWorkerFactory
  42. 769433c8 +10 kernel32.dll BaseThreadInitThunk
  43.  
  44. <?php
  45. require_once('class.phpmailer.php');
  46. $mail = new PHPMailer();
  47.  
  48. $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
  49. $mail->SMTPAuth = true; // authentication enabled
  50. $mail->SMTPSecure = 'tls'; // secure transfer enabled REQUIRED for Gmail
  51. $mail->Host = "smtp.gmail.com";
  52. $mail->Port = 587; // or 587
  53. $mail->IsHTML(true);
  54. $mail->Username = 'user@gmail.com';
  55. $mail->Password = 'pass';
  56. $mail->SetFrom("user@gmail.com");
  57. $mail->Subject = "Test";
  58. $mail->Body = "hello";
  59. $mail->AddAddress("senduser@company.com");
  60.  
  61. // if(!$mail->Send()) {
  62. // echo "Mailer Error: " . $mail->ErrorInfo;
  63. // } else {
  64. // echo "Message has been sent";
  65. // }
  66. print_r($mail->Send());
  67. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement