- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了 PHP Mailer 的问题,它在发生错误时没有提供 $mail->ErrorInfo。
我用 [ http://phpmailer.worxware.com/?pg=tutorial#1] 中的原始示例进行了测试如下。
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.example.com"; // SMTP server
$mail->From = "from@example.com";
$mail->Subject = "First PHPMailer Message";
$mail->Body = "Hi! \n\n This is my first e-mail sent through PHPMailer.";
$mail->WordWrap = 50;
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
?>
$mail->AddAddress("blxxxa@blablaxxxx.de");
最佳答案
尝试将您的 $mail->Send() 放入 try-catch block 中。
try{
// ... Your Setup ...
$mail->Send();
}
catch (phpmailerException $e) {
echo $e->errorMessage(); //PHPMailer error messages
}
catch (Exception $e) {
echo $e->getMessage(); // other error messages
}
关于error-handling - PHPMailer 不提供 ErrorInfo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26926614/
我在 PHP 中有以下类 class MyDB extends SQLite3 { function __construct() { $this->open('Data
我只对 mysql 用户设置了 SELECT 权限 然后,当我运行 UPDATE ... 查询时 $sth = $db->prepare( $update_sql ); if (!$sth) {
如果在交互模式下使用 Tcl,我输入以下内容: set list {1 2 3 4 5} set sum 0 foreach el $list { set sum [expr $sum + $
我遇到了 PHP Mailer 的问题,它在发生错误时没有提供 $mail->ErrorInfo。 我用 [ http://phpmailer.worxware.com/?pg=tutorial#1]
我在玩 TryParse() 但是假设解析失败,然后返回 false,然后……什么都没有……有没有办法获取有关解析失败的信息? 我在 codeproject 上看到了类似的东西,但我并没有真正理解它。
我有一个 MySQL 表,其中有一个定义为唯一的电子邮件地址字段。对于这个例子,假设我的表单所做的只是允许用户将他们的电子邮件地址插入到表中。 由于电子邮件字段是唯一的,因此如果他们尝试输入相同的电子
我在 PDO 方面遇到了奇怪的问题。代码是这样的: $dbh = new PDO($dsn, $user, $password); $dbh->setAttribute(PDO::ATTR_ERRMO
以下代码正确更新表,但也返回异常。知道这里会发生什么吗? public function updateThis($aaa){ try { $success = false; $quer
我使用的是medoo mysql框架。 它工作得很好,并为更新/删除和...等所有操作返回错误 但不适用于插入。 当我插入错误数据(或列名错误)时,它会为最后插入的 ID 返回 0,但也会为 $dat
我是一名优秀的程序员,十分优秀!