1

我一直在尝试使用笔记本电脑中的 wamp 服务器发送邮件。SMTP 服务器在线显示。这是我发送邮件的 php 代码:

<?php
        ini_set( 'SMTP', "mail.vickey1192.co.in" );
        ini_set( 'smtp_port', 26 );
        ini_set( 'sendmail_from', "admin@vickey1192.co.in" );

        $to = "balavickey1192@gmail.com";
        $subject = "Acknowledgement";
        $message = "Thank you for registering with us<br>";
        $from = "no-reply@vickey1192.co.in";
        $headers = "From:" . $from;

        mail($to,$subject,$message,$headers);
        echo "Mail Sent.";
?>

我还像这样设置我的 php.ini 文件:

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = mail.vickey1192.co.in
; http://php.net/smtp-port
smtp_port = 26

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = admin@vickey1192.co.in

这是我得到的错误:

警告:mail() [function.mail]: SMTP 服务器响应:550-请在您的邮件客户端中打开 SMTP 身份验证,或在发送邮件前登录 550-IMAP/POP3 服务器。(vignesh-PC) 550-[115.118.170.201]:23328 不允许未经身份验证通过此服务器 550 进行中继。在第 12 行的 C:\wamp\www\mailtofunc.php

现在我该怎么做?请大家帮帮我...

4

2 回答 2

3

我认为这是身份验证的问题。您需要在邮件功能中添加 SMTP 用户的用户名和密码才能发送电子邮件。

  //Using built in mail method
  $mail = new PHPMailer();
  $mail->Host = 'smtp.example.com'
  $mail->SMTPAuth = true;     // turn on SMTP authentication
  $mail->Username = 'your_username@example.com';  // a valid email here
  $mail->Password = 'replace_with_your_password';
  $mail->From = 'from@example.com';
  $mail->AddReplyTo('from@example.com', 'Test');

  $mail->FromName = 'Test SMTP';
  $mail->AddAddress('test1@example.com', 'test2@example.com');

  $mail->Subject = 'Test SMTP';
  $mail->Body = 'Hello World'; 

  $mail->Send();

如果您知道如何使用它,最好尝试一下 PHP 的 Pear 邮件功能。

//Using PEAR's mail function
<?php
  include('Mail.php');

  /* mail setup recipients, subject etc */
  $recipients = "your_recipients@example.com";
  $headers["From"] = "user@example.com";
  $headers["To"] = "feedback@example.com";
  $headers["Subject"] = "Some Subject";
  $mailmsg = "Hello, This is a test.";

  /* SMTP server name, port, user/passwd */
  $smtpinfo["host"] = "smtp.example.com";
  $smtpinfo["port"] = "25";
  $smtpinfo["auth"] = true;
  $smtpinfo["username"] = "smtpusername";
  $smtpinfo["password"] = "smtpPassword";

  /* Create the mail object using the Mail::factory method */
  $mail_object =& Mail::factory("smtp", $smtpinfo);

  /* Ok send mail */
  $mail_object->send($recipients, $headers, $mailmsg);

?>
于 2013-09-05T06:46:39.020 回答
2

您的邮件服务器需要身份验证(用户名 + 密码)才能接受您的电子邮件。它建议您通过 SMTP 连接提供它(使用 SMTP AUTH,希望使用 TLS),或者您在 SMTP 之前执行一种称为 POP的技术,您首先登录并“检查”您的邮件,这将导致您的主机临时列入白名单所以它可以在之后短暂发送邮件。

于 2013-09-05T06:38:53.700 回答