PHP 페이지에서 Gmail SMTP 서버를 사용하여 이메일 보내기


389

PHP 페이지에서 Gmail의 SMTP 서버를 통해 이메일을 보내려고하는데이 오류가 발생합니다.

인증 실패 [SMTP : SMTP 서버는 인증을 지원하지 않습니다 (코드 : 250, 응답 : 서비스에서 mx.google.com, [98.117.99.235] 크기 35651584 8BITMIME STARTTLS ENHANCEDSTATUSCODES PIPELINING)]

누구든지 도울 수 있습니까? 내 코드는 다음과 같습니다.

<?php
require_once "Mail.php";

$from = "Sandra Sender <sender@example.com>";
$to = "Ramona Recipient <ramona@microsoft.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";

$host = "smtp.gmail.com";
$port = "587";
$username = "testtest@gmail.com";
$password = "testtest";

$headers = array ('From' => $from,
  'To' => $to,
  'Subject' => $subject);
$smtp = Mail::factory('smtp',
  array ('host' => $host,
    'port' => $port,
    'auth' => true,
    'username' => $username,
    'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
  echo("<p>" . $mail->getMessage() . "</p>");
 } else {
  echo("<p>Message successfully sent!</p>");
 }
?>

답변:


357
// Pear Mail Library
require_once "Mail.php";

$from = '<fromaddress@gmail.com>';
$to = '<toaddress@yahoo.com>';
$subject = 'Hi!';
$body = "Hi,\n\nHow are you?";

$headers = array(
    'From' => $from,
    'To' => $to,
    'Subject' => $subject
);

$smtp = Mail::factory('smtp', array(
        'host' => 'ssl://smtp.gmail.com',
        'port' => '465',
        'auth' => true,
        'username' => 'johndoe@gmail.com',
        'password' => 'passwordxxx'
    ));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
    echo('<p>' . $mail->getMessage() . '</p>');
} else {
    echo('<p>Message successfully sent!</p>');
}

141
무엇 Mail.php입니까 ?? 이 파일은 어디서 구할 수 있습니까?
Zain Shaikh

18
누구나 Mail.php 파일을 얻을 수있는 링크를 알려주십시오. 내가 그것을 시도하고 작동하지 않기 때문에 감사합니다
Yoosuf

11
위 예제에서 @ 기호는 어디에 있습니까? 나는 거기에 하나를 볼 수 없습니다!
darkAsPitch 2016 년

6
이메일 계정에서 myaccount.gmail.com은 myaccount@gmail.com과 동일하다고 생각합니다.
Sherwin Flight

3
서버를 지정한 경우 @gmail을 포함 할 필요가 없습니다. myaccount사용자 이름을 입력하십시오 .
Jack

106

Swift mailer를 사용하면 Gmail 자격 증명을 통해 메일을 보내는 것이 매우 쉽습니다.

<?php
require_once 'swift/lib/swift_required.php';

$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, "ssl")
  ->setUsername('GMAIL_USERNAME')
  ->setPassword('GMAIL_PASSWORD');

$mailer = Swift_Mailer::newInstance($transport);

$message = Swift_Message::newInstance('Test Subject')
  ->setFrom(array('abc@example.com' => 'ABC'))
  ->setTo(array('xyz@test.com'))
  ->setBody('This is a test mail.');

$result = $mailer->send($message);
?>

2
이것은 GMAIL_USERNAME, GMAIL_PASSWORD 및 From 및 To 주소를 변경하여 "첫 번째로"작동했습니다. 다른 해결책은 나를 위해 일하지 않았습니다. 감사.
Marco Muciño

7
나는 스위프트 메일러가 배를 엉망으로 만드는 것보다 훨씬 쉬운 메일 솔루션의 한 방울이라는 것에 동의합니다. PHP의 php_openssl 확장자를 활성화하는 것을 잊지 마십시오.
Soth

1
SwiftMailer를 사용하는 멋진 솔루션! +1
Amal Murali

1
arrrgh. icant는 swiftmailer를 작동시킵니다. 나는 그 "작곡가"를 사용하는 방법을 모른다 그래서 난 그냥 github에서 swiftmailer zip을 다운로드 한 다음 open_ssl을 활성화 한 다음 내 gmail 이메일과 암호를 제공했지만 여전히 작동하지 않았습니다.
boi_echos

3
어리석은 미안해 "안전하지 않은 앱"을 사용하도록 설정하는 이메일이 있으므로 Gmail 계정을 열어야합니다. 다음은 지금 헤헤 일
boi_echos


33

나는 Pear Mail을 권장하지 않습니다. 2010 년 이후로 업데이트되지 않았습니다. 또한 소스 파일을 읽으십시오. 소스 코드는 거의 구식이며 PHP 4 스타일로 작성되었으며 많은 오류 / 버그가 게시되었습니다 (Google it). Swift Mailer를 사용하고 있습니다.

Swift Mailer 는 PHP 5로 작성된 모든 웹 응용 프로그램에 통합되어 다양한 기능을 가진 전자 메일을 보내는 유연하고 우아한 객체 지향 접근 방식을 제공합니다.

SMTP, sendmail, postfix 또는 사용자 정의 전송 구현을 사용하여 이메일을 보내십시오.

사용자 이름 및 비밀번호 및 / 또는 암호화가 필요한 서버를 지원하십시오.

요청 데이터 내용을 제거하지 않고 헤더 주입 공격으로부터 보호하십시오.

MIME 호환 HTML / 멀티 파트 이메일을 보냅니다.

이벤트 중심 플러그인을 사용하여 라이브러리를 사용자 정의하십시오.

메모리 사용량이 적은 대형 첨부 파일 및 인라인 / 내장 이미지를 처리하십시오.

Swift Mailer를 다운로드 하여 서버에 업로드 할 수있는 무료 오픈 소스 입니다. 기능 목록은 소유자 웹 사이트에서 복사됩니다.

Gmail SSL / SMTP 및 Swift Mailer의 실제 예는 다음과 같습니다.

// Swift Mailer Library
require_once '../path/to/lib/swift_required.php';

// Mail Transport
$transport = Swift_SmtpTransport::newInstance('ssl://smtp.gmail.com', 465)
    ->setUsername('username@gmail.com') // Your Gmail Username
    ->setPassword('my_secure_gmail_password'); // Your Gmail Password

// Mailer
$mailer = Swift_Mailer::newInstance($transport);

// Create a message
$message = Swift_Message::newInstance('Wonderful Subject Here')
    ->setFrom(array('sender@example.com' => 'Sender Name')) // can be $_POST['email'] etc...
    ->setTo(array('receiver@example.com' => 'Receiver Name')) // your email / multiple supported.
    ->setBody('Here is the <strong>message</strong> itself. It can be text or <h1>HTML</h1>.', 'text/html');

// Send the message
if ($mailer->send($message)) {
    echo 'Mail sent successfully.';
} else {
    echo 'I am sure, your configuration are not correct. :(';
}

이게 도움이 되길 바란다. 행복한 코딩 ... :)


1
더 이상 작동하지 않습니다. 항상 "535-5.7.8 사용자 이름 및 비밀번호를 수락 할 수 없습니다"라는 메시지가 표시됩니다. 자격 증명이 양호하고 "보안이 취약한 앱 허용"을 ON으로 설정했습니다. 누구든지 이것에 대한 해결책을 알고 있습니까?
AndrewB

Swift는 PHP 5.x에서 작동하지 않는 것 같습니다. 합체-그냥 터집니다.
HerrimanCoder

28
<?php
date_default_timezone_set('America/Toronto');

require_once('class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail             = new PHPMailer();

$body             = "gdssdh";
//$body             = eregi_replace("[\]",'',$body);

$mail->IsSMTP(); // telling the class to use SMTP
//$mail->Host       = "ssl://smtp.gmail.com"; // SMTP server
$mail->SMTPDebug  = 1;                     // enables SMTP debug information (for testing)
                                           // 1 = errors and messages
                                           // 2 = messages only
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port for the GMAIL server
$mail->Username   = "user@gmail.com";  // GMAIL username
$mail->Password   = "password";            // GMAIL password

$mail->SetFrom('contact@prsps.in', 'PRSPS');

//$mail->AddReplyTo("user2@gmail.com', 'First Last");

$mail->Subject    = "PRSPS password";

//$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test

$mail->MsgHTML($body);

$address = "user2@yahoo.co.in";
$mail->AddAddress($address, "user2");

//$mail->AddAttachment("images/phpmailer.gif");      // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}

?>

왜 호스트를 두 번 설정하고 올바른 호스트를 설정합니까?
Emile Bergeron

class.phpmailer.php 파일은 어디서 구할 수 있습니까? 붙여 넣기 코드만으로는 도움이되지 않습니다. pls도 코드에 대한 자세한 설명을 포함합니다!
GeneCode

일부 구문이 오래되었지만 PHPMailer는 나에게 가장 적합한 솔루션이되었습니다. +1
zoltar

20

SwiftMailer 는 외부 서버를 사용하여 이메일을 보낼 수 있습니다.

다음은 Gmail 서버를 사용하는 방법을 보여주는 예입니다.

require_once "lib/Swift.php";
require_once "lib/Swift/Connection/SMTP.php";

//Connect to localhost on port 25
$swift =& new Swift(new Swift_Connection_SMTP("localhost"));


//Connect to an IP address on a non-standard port
$swift =& new Swift(new Swift_Connection_SMTP("217.147.94.117", 419));


//Connect to Gmail (PHP5)
$swift = new Swift(new Swift_Connection_SMTP(
    "smtp.gmail.com", Swift_Connection_SMTP::PORT_SECURE, Swift_Connection_SMTP::ENC_TLS));

14

질문에 나열된 코드는 두 가지 변경이 필요합니다

$host = "ssl://smtp.gmail.com";
$port = "465";

SSL 연결에는 포트 465가 필요합니다.


6

Gmail을 통해 phpMailer 라이브러리를 사용하여 메일 보내기 Github 에서 라이브러리 파일을 donwload하십시오

<?php
/**
 * This example shows settings to use when sending via Google's Gmail servers.
 */
//SMTP needs accurate times, and the PHP time zone MUST be set
//This should be done in your php.ini, but this is how to do it if you don't have access to that
date_default_timezone_set('Etc/UTC');
require '../PHPMailerAutoload.php';
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = 'smtp.gmail.com';
// use
// $mail->Host = gethostbyname('smtp.gmail.com');
// if your network does not support SMTP over IPv6
//Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
$mail->Port = 587;
//Set the encryption system to use - ssl (deprecated) or tls
$mail->SMTPSecure = 'tls';
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication - use full email address for gmail
$mail->Username = "username@gmail.com";
//Password to use for SMTP authentication
$mail->Password = "yourpassword";
//Set who the message is to be sent from
$mail->setFrom('from@example.com', 'First Last');
//Set an alternative reply-to address
$mail->addReplyTo('replyto@example.com', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('whoto@example.com', 'John Doe');
//Set the subject line
$mail->Subject = 'PHPMailer GMail SMTP test';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->addAttachment('images/phpmailer_mini.png');
//send the message, check for errors
if (!$mail->send()) {
    echo "Mailer Error: " . $mail->ErrorInfo;
} else {
    echo "Message sent!";
}

5

나는 또한이 문제가 있었다. 올바른 설정을 지정하고 덜 안전한 앱을 활성화했지만 여전히 작동하지 않습니다. 마지막으로 https://accounts.google.com/UnlockCaptcha 이 기능을 사용하도록 설정 했습니다. 나는 이것이 누군가를 돕기를 바랍니다.



4

우분투에서 PEAR의 Mail.php를 설치하려면 다음 명령을 실행하십시오 :

    sudo apt-get install php-pear
    sudo pear install mail
    sudo pear install Net_SMTP
    sudo pear install Auth_SASL
    sudo pear install mail_mime

0

"@ gmail.com"접미사가없는 GSuite 계정에 대한 솔루션이 있습니다. 또한 @ gmail.com의 GSuite 계정에서 작동하지만 시도하지는 않았다고 생각합니다. 먼저 GSuite 계정에 대해 "안전하지 않은 앱의 합금"옵션을 변경할 수있는 권한이 있어야합니다. 권한이있는 경우 (계정 설정-> 보안에서 확인할 수 있음) "2 단계 요소 인증"을 비활성화하고 페이지 끝으로 이동하여 덜 안전한 응용 프로그램을 허용하려면 "예"로 설정해야합니다. 그게 다야. 해당 옵션을 변경할 수있는 권한이 없으면이 스레드에 대한 솔루션이 작동하지 않습니다. "허용 안함 ..."옵션을 변경하려면 https://support.google.com/a/answer/6260879?hl=ko 를 확인 하십시오 .


0

@shasi kanth가 제안한 제안을 시도했지만 해결되지 않았습니다. 설명서를 읽었으며 변경 사항이 거의 없습니다. 그래서 나는이 코드를 사용하여 Gmail을 통해 메일을 보낼 수있었습니다.

<?php
     require_once 'vendor/autoload.php';
     $transport = (new Swift_SmtpTransport('smtp.gmail.com', 465, 'ssl'))->setUsername ('SendingMail')->setPassword ('Password');

     $mailer = new Swift_Mailer($transport);

     $message = (new Swift_Message('test'))
      ->setFrom(['Sending mail'])
      ->setTo(['Recipient mail'])
      ->setBody('Message')
  ;

     $result = $mailer->send($message);
    ?>

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.