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,610
19년 전 조회 1,864
19년 전 조회 3,016
19년 전 조회 2,128
19년 전 조회 3,383
19년 전 조회 3,301
19년 전 조회 2,414
19년 전 조회 1,968
19년 전 조회 2,999
19년 전 조회 3,065
19년 전 조회 4,194
19년 전 조회 2,166
19년 전 조회 2,806
19년 전 조회 2,514
19년 전 조회 3,644
19년 전 조회 1,595
19년 전 조회 1,654
19년 전 조회 1,945
19년 전 조회 2,387
19년 전 조회 2,006
19년 전 조회 1,884
19년 전 조회 2,283
19년 전 조회 2,370
19년 전 조회 5,133
19년 전 조회 2,515
19년 전 조회 3,380
19년 전 조회 2,834
19년 전 조회 2,594
19년 전 조회 4,877
19년 전 조회 2,730
19년 전 조회 2,582
19년 전 조회 2,130
19년 전 조회 1,916
19년 전 조회 3,532
19년 전 조회 2,503
19년 전 조회 6,340
19년 전 조회 2,202
19년 전 조회 2,080
19년 전 조회 2,889
19년 전 조회 1,985
19년 전 조회 2,445
19년 전 조회 2,280
19년 전 조회 3,737
19년 전 조회 2,739
19년 전 조회 2,931
19년 전 조회 4,544
19년 전 조회 3,717
19년 전 조회 2,486
19년 전 조회 4,477
19년 전 조회 3,452
19년 전 조회 4,318
19년 전 조회 2,181
19년 전 조회 2,384
19년 전 조회 2,319
19년 전 조회 3,524
19년 전 조회 2,881
19년 전 조회 3,686
19년 전 조회 2,854
19년 전 조회 2,687
19년 전 조회 2,518
19년 전 조회 2,411
19년 전 조회 2,305
19년 전 조회 4,432
19년 전 조회 2,847
19년 전 조회 2,329
19년 전 조회 2,429
19년 전 조회 3,010
19년 전 조회 2,133
19년 전 조회 3,374
19년 전 조회 2,933
19년 전 조회 2,443
19년 전 조회 1,965
19년 전 조회 2,421
19년 전 조회 2,192
19년 전 조회 2,062
19년 전 조회 2,631
19년 전 조회 2,483
19년 전 조회 4,065
19년 전 조회 3,912
19년 전 조회 2,427
19년 전 조회 3,455
19년 전 조회 2,128
19년 전 조회 2,563
19년 전 조회 2,446
19년 전 조회 2,509
19년 전 조회 2,354
19년 전 조회 2,989
19년 전 조회 2,997
19년 전 조회 3,327
19년 전 조회 3,209
19년 전 조회 2,873
19년 전 조회 3,090
19년 전 조회 3,326
19년 전 조회 3,045
19년 전 조회 2,787
19년 전 조회 3,105
19년 전 조회 4,681
19년 전 조회 2,588
19년 전 조회 2,617
19년 전 조회 3,665