php发送具有崩溃文本文件的电子邮件

标签 php

每次我运行我的脚本时,我都会得到下面的 crash.txt 文件 我正在使用 IIS 发送 php 邮件 我尝试了 php mailer、smtp 和 PHPMailerAutoload,但它们都不起作用,并且所有输出都具有相同的 crash.txt 下面是崩溃文件的示例

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

这是我的代码:

<?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());
?> 

最佳答案

PHPMailer exampels您的代码中缺少一行: $邮件->isSMTP();//设置邮件程序使用 SMTP

关于php发送具有崩溃文本文件的电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36837565/

相关文章:

php - AWS 中的 ElasticSearch 通配符查询和空格问题

php - 仅搜索和替换 wordpress 内容中的第一个 h2 标签

php - 删除单个数据而不删除mysql中的整行

java - 如何从 Joomla 调用外部网络服务

javascript - 使用 PHP 从包含 youtube/vimeo url 的字符串中提取域名、视频 url 和视频 id 的正则表达式模式

php - 将 .CSV 文件导入 mysql 数据库

php - 使用 CSS 为数据库查询集数据中的某些表行设置样式

php 在一台机器上解析失败,但在另一台机器上解析失败

php - Joomla K2 额外字段 : Differentiated Display

php - IN返回空的MySQL查询