Php crash email

Every time I run my script, I get a crash.txt file below I use IIS to send php mail I try php mailer, smtp and PHPMailerAutoload, but all this does not work, and they all display with the same crash.txt below an example of a failure file is given

registered owner : Microsoft / Microsoft operating system : Windows 7 x64 Service Pack 1 build 7601 system language : English system up time : 5 hours 1 minute program up time : 5 minutes processors : 4x Intel(R) Core(TM) i3-4160 CPU @ 3.60GHz physical memory : 1186/3968 MB (free/total) free disk space : (C:) 116.21 GB display mode : 1024x768, 32 bit process id : $1e74 allocated memory : 10.56 MB executable : sendmail.exe exec. date/time : 2011-06-18 01:10 compiled with : Delphi 2006/07 madExcept version : 3.0l callstack crc : $205f8196, $4436e8c2, $4436e8c2 exception number : 1 exception class : EInOutError exception message : I/O error 105. main thread ($203c): 004b675c +18a8 sendmail.exe sendmail 922 +440 initialization 76ee013e +000a ntdll.dll KiUserExceptionDispatcher 0040474d +001d sendmail.exe System 262 +0 @AfterConstruction 0043dada +01fe sendmail.exe IdIOHandler 1508 +60 TIdIOHandler.ReadFromSource 0043d559 +0159 sendmail.exe IdIOHandler 1315 +57 TIdIOHandler.ReadLn 0043d380 +0024 sendmail.exe IdIOHandler 1233 +1 TIdIOHandler.ReadLn 0043d837 +0073 sendmail.exe IdIOHandler 1428 +10 TIdIOHandler.ReadLnWait 0044035d +0059 sendmail.exe IdTCPConnection 768 +7 TIdTCPConnection.GetInternalResponse 0043fea3 +0013 sendmail.exe IdTCPConnection 564 +1 TIdTCPConnection.GetResponse 004403fd +002d sendmail.exe IdTCPConnection 788 +4 TIdTCPConnection.GetResponse 0045ab97 +0033 sendmail.exe IdSMTP 375 +4 TIdSMTP.Connect 004b5f14 +1060 sendmail.exe sendmail 808 +326 initialization 769433c8 +0010 kernel32.dll BaseThreadInitThunk thread $2170: 76ef0146 +0e ntdll.dll NtWaitForMultipleObjects 769433c8 +10 kernel32.dll BaseThreadInitThunk thread $1824: 76ef1f2f +0b ntdll.dll NtWaitForWorkViaWorkerFactory 769433c8 +10 kernel32.dll BaseThreadInitThunk 

this is my code:

 <?php require_once('class.phpmailer.php'); $mail = new PHPMailer(); $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'tls'; // secure transfer enabled REQUIRED for Gmail $mail->Host = "smtp.gmail.com"; $mail->Port = 587; // or 587 $mail->IsHTML(true); $mail->Username = ' user@gmail.com '; $mail->Password = 'pass'; $mail->SetFrom(" user@gmail.com "); $mail->Subject = "Test"; $mail->Body = "hello"; $mail->AddAddress(" senduser@company.com "); // if(!$mail->Send()) { // echo "Mailer Error: " . $mail->ErrorInfo; // } else { // echo "Message has been sent"; // } print_r($mail->Send()); ?> 
+5
source share
4 answers

In PHPMailer exampels, there is one line that is not in your code: $mail->isSMTP(); // Set mailer to use SMTP $mail->isSMTP(); // Set mailer to use SMTP

+3
source
 please check your smtp_host name like this <?php require_once('class.phpmailer.php'); $mail = new PHPMailer(); $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'tls'; // secure transfer enabled REQUIRED for Gmail $mail->Host = "ip-111-133-133-100.ip.secureserver.net"; $mail->Port = 587; // or 587 $mail->IsHTML(true); $mail->Username = ' user@gmail.com '; $mail->Password = 'pass'; $mail->SetFrom(" user@gmail.com "); $mail->Subject = "Test"; $mail->Body = "hello"; $mail->AddAddress(" senduser@company.com "); // if(!$mail->Send()) { // echo "Mailer Error: " . $mail->ErrorInfo; // } else { // echo "Message has been sent"; // } print_r($mail->Send()); ?> 
0
source

The code provided in the question needs One Change

 $port = "465"; 

enter image description here

0
source

Your PHP code looks fine. Have you configured Application Pool Identifier and allowed permission to run sendmail.exe?

0
source

Source: https://habr.com/ru/post/1247855/


All Articles