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,570
19년 전 조회 1,818
19년 전 조회 2,964
19년 전 조회 2,074
19년 전 조회 3,339
19년 전 조회 3,263
19년 전 조회 2,369
19년 전 조회 1,918
19년 전 조회 2,957
19년 전 조회 3,026
19년 전 조회 4,146
19년 전 조회 2,118
19년 전 조회 2,765
19년 전 조회 2,466
19년 전 조회 3,599
19년 전 조회 1,545
19년 전 조회 1,617
19년 전 조회 1,900
19년 전 조회 2,350
19년 전 조회 1,961
19년 전 조회 1,842
19년 전 조회 2,238
19년 전 조회 2,332
19년 전 조회 5,089
19년 전 조회 2,471
19년 전 조회 3,327
19년 전 조회 2,785
19년 전 조회 2,545
19년 전 조회 4,834
19년 전 조회 2,693
19년 전 조회 2,532
19년 전 조회 2,082
19년 전 조회 1,868
19년 전 조회 3,480
19년 전 조회 2,458
19년 전 조회 6,293
19년 전 조회 2,154
19년 전 조회 2,038
19년 전 조회 2,839
19년 전 조회 1,937
19년 전 조회 2,410
19년 전 조회 2,237
19년 전 조회 3,688
19년 전 조회 2,688
19년 전 조회 2,879
19년 전 조회 4,496
19년 전 조회 3,674
19년 전 조회 2,441
19년 전 조회 4,434
19년 전 조회 3,406
19년 전 조회 4,267
19년 전 조회 2,137
19년 전 조회 2,335
19년 전 조회 2,271
19년 전 조회 3,476
19년 전 조회 2,848
19년 전 조회 3,636
19년 전 조회 2,809
19년 전 조회 2,639
19년 전 조회 2,468
19년 전 조회 2,364
19년 전 조회 2,252
19년 전 조회 4,389
19년 전 조회 2,803
19년 전 조회 2,282
19년 전 조회 2,385
19년 전 조회 2,966
19년 전 조회 2,084
19년 전 조회 3,332
19년 전 조회 2,888
19년 전 조회 2,395
19년 전 조회 1,926
19년 전 조회 2,370
19년 전 조회 2,142
19년 전 조회 2,028
19년 전 조회 2,587
19년 전 조회 2,444
19년 전 조회 4,021
19년 전 조회 3,864
19년 전 조회 2,370
19년 전 조회 3,413
19년 전 조회 2,081
19년 전 조회 2,507
19년 전 조회 2,398
19년 전 조회 2,464
19년 전 조회 2,306
19년 전 조회 2,937
19년 전 조회 2,948
19년 전 조회 3,286
19년 전 조회 3,156
19년 전 조회 2,829
19년 전 조회 3,048
19년 전 조회 3,291
19년 전 조회 3,001
19년 전 조회 2,732
19년 전 조회 3,060
19년 전 조회 4,637
19년 전 조회 2,541
19년 전 조회 2,573
19년 전 조회 3,613