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,700
19년 전 조회 1,962
19년 전 조회 3,097
19년 전 조회 2,215
19년 전 조회 3,464
19년 전 조회 3,389
19년 전 조회 2,506
19년 전 조회 2,064
19년 전 조회 3,091
19년 전 조회 3,153
19년 전 조회 4,283
19년 전 조회 2,233
19년 전 조회 2,909
19년 전 조회 2,597
19년 전 조회 3,739
19년 전 조회 1,682
19년 전 조회 1,746
19년 전 조회 2,025
19년 전 조회 2,472
19년 전 조회 2,089
19년 전 조회 1,972
19년 전 조회 2,368
19년 전 조회 2,460
19년 전 조회 5,216
19년 전 조회 2,597
19년 전 조회 3,463
19년 전 조회 2,919
19년 전 조회 2,676
19년 전 조회 4,966
19년 전 조회 2,823
19년 전 조회 2,666
19년 전 조회 2,228
19년 전 조회 2,003
19년 전 조회 3,629
19년 전 조회 2,586
19년 전 조회 6,427
19년 전 조회 2,307
19년 전 조회 2,167
19년 전 조회 2,982
19년 전 조회 2,080
19년 전 조회 2,527
19년 전 조회 2,366
19년 전 조회 3,835
19년 전 조회 2,829
19년 전 조회 3,028
19년 전 조회 4,631
19년 전 조회 3,828
19년 전 조회 2,566
19년 전 조회 4,568
19년 전 조회 3,545
19년 전 조회 4,418
19년 전 조회 2,274
19년 전 조회 2,487
19년 전 조회 2,416
19년 전 조회 3,615
19년 전 조회 2,997
19년 전 조회 3,766
19년 전 조회 2,965
19년 전 조회 2,778
19년 전 조회 2,612
19년 전 조회 2,501
19년 전 조회 2,408
19년 전 조회 4,528
19년 전 조회 2,946
19년 전 조회 2,429
19년 전 조회 2,532
19년 전 조회 3,109
19년 전 조회 2,234
19년 전 조회 3,468
19년 전 조회 3,039
19년 전 조회 2,538
19년 전 조회 2,075
19년 전 조회 2,499
19년 전 조회 2,293
19년 전 조회 2,171
19년 전 조회 2,737
19년 전 조회 2,584
19년 전 조회 4,152
19년 전 조회 4,020
19년 전 조회 2,523
19년 전 조회 3,551
19년 전 조회 2,228
19년 전 조회 2,650
19년 전 조회 2,551
19년 전 조회 2,602
19년 전 조회 2,462
19년 전 조회 3,091
19년 전 조회 3,102
19년 전 조회 3,426
19년 전 조회 3,312
19년 전 조회 2,964
19년 전 조회 3,192
19년 전 조회 3,426
19년 전 조회 3,134
19년 전 조회 2,862
19년 전 조회 3,184
19년 전 조회 4,767
19년 전 조회 2,681
19년 전 조회 2,700
19년 전 조회 3,755