2011-02-01 4 views
-2

phpmailer로 이메일을 보내고 싶습니다.PHP 프로젝트에서 phpmailer로 이메일 보내기?

http://phpmailer.worxware.com/

그래서 내가 (자신의 사이트에서 다운로드 링크에 의해 PHP 4-5) 여기에서 자신의 라이브러리를 다운로드 :

내가 구글을 검색하고 내가 타격 링크를 발견하기위한

http://sourceforge.net/projects/phpmailer/files/phpmailer%20for%20php4/0.90/

그 후 이런 예를 참조 (고급 사용 SMTP 의미)

http://phpmailer.worxware.com/index.php?pg=exampleasmtp

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

$mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch 

$mail->IsSMTP(); // telling the class to use SMTP 

try { 
    $mail->Host  = "mail.yourdomain.com"; // SMTP server 
    $mail->SMTPDebug = 2;      // enables SMTP debug information (for testing) 
    $mail->SMTPAuth = true;     // enable SMTP authentication 
    $mail->Host  = "mail.yourdomain.com"; // sets the SMTP server 
    $mail->Port  = 26;     // set the SMTP port for the GMAIL server 
    $mail->Username = "[email protected]"; // SMTP account username 
    $mail->Password = "yourpassword";  // SMTP account password 
    $mail->AddReplyTo('[email protected]', 'First Last'); 
    $mail->AddAddress('[email protected]', 'John Doe'); 
    $mail->SetFrom('[email protected]', 'First Last'); 
    $mail->AddReplyTo('[email protected]', 'First Last'); 
    $mail->Subject = 'PHPMailer Test Subject via mail(), advanced'; 
    $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically 
    $mail->MsgHTML(file_get_contents('contents.html')); 
    $mail->AddAttachment('images/phpmailer.gif');  // attachment 
    $mail->AddAttachment('images/phpmailer_mini.gif'); // attachment 
    $mail->Send(); 
    echo "Message Sent OK\n"; 
} catch (phpmailerException $e) { 
    echo $e->errorMessage(); //Pretty error messages from PHPMailer 
} catch (Exception $e) { 
    echo $e->getMessage(); //Boring error messages from anything else! 
} 

?> 

하지만 난이 줄을 class.phpmailer.php 파일을 찾을 수 없습니다 -> require_once를 ('../ class.phpmailer.php'); dowloaded 파일에서.

나는 무엇인가 놓쳤는가?

그게 도움이 될까요?

최고.

답변

0

"../"는 "하나의 디렉토리 레벨 상위"를 의미합니다. 즉,이 스크립트가 실행되는 디렉터리보다 하나 높은 디렉터리에서 class.phpmailer.php 파일을 찾아야합니다. 그것이 class.phpmailer.php 파일을 저장 한 곳이 아니라면 경로를 조정하십시오.

+0

감사합니다. 4 답변/당신의 의미를 이해합니다. 그러나 class.phpmailer.php 파일이 전혀 없습니다./plz이 프로젝트를 다운로드하고 내가 말하는 것을 볼 수 있습니다! 다른 위치에서 다운로드해야합니까? – LostLord

+0

그 예는 10 년 후에 업데이트되지 않은 "PHPMailer for PHP5"가 아닌 "PHPMailer for PHP4"다운로드입니다. 나는 그것을 사용하지 말 것을 권한다. 젠장, 나는 PHPMailer를 전혀 사용하지 말 것을 권한다. SwiftMailer를 사용해 보아라. –

-1

PHPMailer와 5.5.10을 사용하고 있습니다. 정말 잘 작동합니다.

매우 쉽게 시작하고 실행할 수있었습니다. PHP 파일과 함께 디렉토리에 파일을 복사하십시오.

스크립트에 'include'하고 ... 귀하의 전자 메일의 기초로 제공하는 예제 코드를 사용하십시오. https://github.com/PHPMailer/PHPMailer

행운을 :

는 파일이 방문 얻으려면.

여기도 SwiftMailer에 대한 좋은 점이 있습니다.

0

시도해보십시오.

   <?php 
      include "/home/tnehme/public_html/smtpmail/classes/class.phpmailer.php"; // include the class name 

      $mail = new PHPMailer(); // the true param means it will throw exceptions on errors, which we need to catch 

      $mail->IsSMTP(); // telling the class to use SMTP 

      try { 
       $mail->Host  = "mail.yourdomain.com"; // SMTP server 
       $mail->SMTPDebug = 2;      // enables SMTP debug information (for testing) 
       $mail->SMTPAuth = true;     // enable SMTP authentication 
       $mail->Host  = "mail.yourdomain.com"; // sets the SMTP server 
       $mail->Port  = 26;     // set the SMTP port for the GMAIL server 
       $mail->Username = "[email protected]"; // SMTP account username 
       $mail->Password = "yourpassword";  // SMTP account password 
       $mail->AddReplyTo('[email protected]', 'First Last'); 
       $mail->AddAddress('[email protected]', 'John Doe'); 
       $mail->SetFrom('[email protected]', 'First Last'); 
       $mail->AddReplyTo('[email protected]', 'First Last'); 
       $mail->Subject = 'PHPMailer Test Subject via mail(), advanced'; 
       $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically 
       $mail->MsgHTML(file_get_contents('contents.html')); 
       $mail->AddAttachment('images/phpmailer.gif');  // attachment 
       $mail->AddAttachment('images/phpmailer_mini.gif'); // attachment 
       $mail->Send(); 
       echo "Message Sent OK\n"; 
      } catch (phpmailerException $e) { 
       echo $e->errorMessage(); //Pretty error messages from PHPMailer 
      } catch (Exception $e) { 
       echo $e->getMessage(); //Boring error messages from anything else! 
      } 

      ?>