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 파일에서.
나는 무엇인가 놓쳤는가?
그게 도움이 될까요?
최고.
감사합니다. 4 답변/당신의 의미를 이해합니다. 그러나 class.phpmailer.php 파일이 전혀 없습니다./plz이 프로젝트를 다운로드하고 내가 말하는 것을 볼 수 있습니다! 다른 위치에서 다운로드해야합니까? – LostLord
그 예는 10 년 후에 업데이트되지 않은 "PHPMailer for PHP5"가 아닌 "PHPMailer for PHP4"다운로드입니다. 나는 그것을 사용하지 말 것을 권한다. 젠장, 나는 PHPMailer를 전혀 사용하지 말 것을 권한다. SwiftMailer를 사용해 보아라. –