我有一个使用PHPMailer的脚本,并在底部有一个if语句,标题为' Message Sent'
我在该声明中真正想要的是发送到email@address.com.'的消息;通过电子邮件地址,消息进入。
这很容易吗?
由于
答案 0 :(得分:1)
就像我们的朋友Marc B所说,您可以在文字中添加$recipient
。例如:
$recipient = 'mail@example.com';
// ...
if (!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent to $recipient';
}
任何细节都让我知道。
祝你好运。