D

[소개] smtp를 이용하여 mail 보내기

출처: http://www.linuxquestions.org/questions/showthread.php?t=359033
http://pear.php.net/package/Mail
아래 소스는
http://www.linuxquestions.org/questions/showthread.php?t=359033
에서 가져 왔고
Mail_smtp 클래스는
http://pear.php.net/package/Mail
에서 받으시면 됩니다.

<?php

include('Mail/smtp.php');

class MailHandler{
var $params = null;
var $mail_object = null;
var $recipients = null;
var $headers = null;
var $body = "";

function MailHandler($host, $port, $auth, $username, $password, $persist) {
$this->params["host"] = $host;
$this->params["port"] = $port;
$this->params["auth"] = $auth;
$this->params["username"] = $username;
$this->params["password"] = $password;
$this->params["persist"] = $persist;

// Create the mail object using the Mail::factory method
//$this->mail_object =& Mail::factory('smtp', $this->params);
$this->mail_object = new Mail_smtp($this->params);
}

function createFrom($email){
$this->headers['From'] = $email;
}

function createTo($email){
$this->headers['To'] = $email;
$this->recipients = array($email);
}

function createCC($email){
$this->headers['Cc'] = $email;
}

function createBCC($email){
$this->headers['Bcc'] = $email;
}

function createSubject($sub){
$this->headers['Subject'] = $sub;
}

function createBody($body){
$this->body=$body;
}

function sendMail(){
if ($this->mail_object->send($this->recipients, $this->headers, $this->body)) {
return true;
}
else{
return false;
}
}
}


$smtpserver_host = "localhost"; // The server to connect. Default is localhost
$smtpserver_Port = 25; // The port to connect. Default is 25
$smtpserver_auth = FALSE; // Whether or not to use SMTP authentication. Default is FALSE
$smtpserver_username = "username"; // The username to use for SMTP authentication.
$smtpserver_password = "password"; // The password to use for SMTP authentication.
$smtpserver_persist = FALSE; // Indicates whether or not the SMTP connection should persist over multiple calls to the send() method.
$mailhandler=new MailHandler($smtpserver_host, $smtpserver_Port, $smtpserver_auth, $smtpserver_username, $smtpserver_password, $smtpserver_persist);

$mailhandler->createTo("toaddress");
$mailhandler->createFrom("fromaddress");
$mailhandler->createSubject("subject");
$mailhandler->createBody("body");

if($mailhandler->sendMail()){
echo "Mail sent.\n";
}
else{
echo "Error sending mail!\n";
}

?><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
19년 전 조회 1,709
19년 전 조회 1,966
19년 전 조회 3,109
19년 전 조회 2,218
19년 전 조회 3,470
19년 전 조회 3,396
19년 전 조회 2,515
19년 전 조회 2,075
19년 전 조회 3,099
19년 전 조회 3,155
19년 전 조회 4,289
19년 전 조회 2,243
19년 전 조회 2,916
19년 전 조회 2,608
19년 전 조회 3,745
19년 전 조회 1,691
19년 전 조회 1,754
19년 전 조회 2,039
19년 전 조회 2,482
19년 전 조회 2,097
19년 전 조회 1,979
19년 전 조회 2,376
19년 전 조회 2,471
19년 전 조회 5,227
19년 전 조회 2,609
19년 전 조회 3,472
19년 전 조회 2,930
19년 전 조회 2,685
19년 전 조회 4,971
19년 전 조회 2,831
19년 전 조회 2,678
19년 전 조회 2,238
19년 전 조회 2,006
19년 전 조회 3,638
19년 전 조회 2,595
19년 전 조회 6,437
19년 전 조회 2,320
19년 전 조회 2,176
19년 전 조회 2,992
19년 전 조회 2,092
19년 전 조회 2,536
19년 전 조회 2,375
19년 전 조회 3,842
19년 전 조회 2,835
19년 전 조회 3,040
19년 전 조회 4,640
19년 전 조회 3,838
19년 전 조회 2,573
19년 전 조회 4,574
19년 전 조회 3,551
19년 전 조회 4,426
19년 전 조회 2,283
19년 전 조회 2,493
19년 전 조회 2,424
19년 전 조회 3,625
19년 전 조회 3,008
19년 전 조회 3,776
19년 전 조회 2,975
19년 전 조회 2,789
19년 전 조회 2,623
19년 전 조회 2,506
19년 전 조회 2,414
19년 전 조회 4,535
19년 전 조회 2,957
19년 전 조회 2,439
19년 전 조회 2,540
19년 전 조회 3,117
19년 전 조회 2,244
19년 전 조회 3,478
19년 전 조회 3,051
19년 전 조회 2,548
19년 전 조회 2,089
19년 전 조회 2,508
19년 전 조회 2,305
19년 전 조회 2,179
19년 전 조회 2,747
19년 전 조회 2,592
19년 전 조회 4,162
19년 전 조회 4,028
19년 전 조회 2,535
19년 전 조회 3,558
19년 전 조회 2,240
19년 전 조회 2,660
19년 전 조회 2,557
19년 전 조회 2,613
19년 전 조회 2,474
19년 전 조회 3,098
19년 전 조회 3,108
19년 전 조회 3,433
19년 전 조회 3,319
19년 전 조회 2,971
19년 전 조회 3,199
19년 전 조회 3,433
19년 전 조회 3,145
19년 전 조회 2,871
19년 전 조회 3,194
19년 전 조회 4,773
19년 전 조회 2,692
19년 전 조회 2,706
19년 전 조회 3,763