-2

任何人都可以为我提供通过带有附加对象的php发送邮件的方式。plz我是新来的,请帮助我。是否为此安装任何服务器?邮件应该在任何电子邮件帐户上以及请帮助我。任何人都可以向我提供教程的链接我在这里使用了教程它向我显示错误 Fatal error: Call to undefined function IsSMTP() in C:\wamp\www\EMS3\mail.php on line 13请帮助我

4

3 回答 3

1

那里提供的示例中有错误。使用以下代码。

require("phpmailer/class.phpmailer.php");
$mail = new PHPMailer(); 
$mail->IsSMTP(); // send via SMTP
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "username@gmail.com"; // SMTP username
$mail->Password = "password"; // SMTP password
$webmaster_email = "username@doamin.com"; //Reply to this email ID
$email="username@domain.com"; // Recipients email ID
$name="name"; // Recipient's name
$mail->From = $webmaster_email;
$mail->FromName = "Webmaster";
$mail->AddAddress($email,$name);
$mail->AddReplyTo($webmaster_email,"Webmaster");
$mail->WordWrap = 50; // set word wrap
$mail->AddAttachment("/var/tmp/file.tar.gz"); // attachment
$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // attachment
$mail->IsHTML(true); // send as HTML
$mail->Subject = "This is the subject";
$mail->Body = "Hi,
This is the HTML BODY "; //HTML Body
$mail->AltBody = "This is the body when user views in plain text format"; //Text Body
if(!$mail->Send())
{
echo "Mailer Error: " . $mail->ErrorInfo;
}
else
{
echo "Message has been sent";
}
?>

更新您还需要设置您使用的外部 SMTP 服务器。如果您使用谷歌。我相信它smtp.gmail.com

  $mail->Host = "smtp.gmail.com";
  $mail->Port = 465;
  $mail->Secure = "ssl";
于 2013-07-06T11:48:16.440 回答
0

您可以使用外部 PHP 库来发送邮件,我在 localhost 内部使用过,但仍将参数配置为发送到外部源。包裹是Swift Mailer

于 2013-07-08T14:00:34.063 回答
-3

在 localhost 你不能发送任何邮件。只有在托管之后,这是可能的。

于 2013-07-06T11:47:41.073 回答