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>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
19년 전 조회 1,592
19년 전 조회 1,845
19년 전 조회 2,993
19년 전 조회 2,109
19년 전 조회 3,365
19년 전 조회 3,282
19년 전 조회 2,391
19년 전 조회 1,945
19년 전 조회 2,980
19년 전 조회 3,041
19년 전 조회 4,174
19년 전 조회 2,142
19년 전 조회 2,791
19년 전 조회 2,493
19년 전 조회 3,629
19년 전 조회 1,574
19년 전 조회 1,631
19년 전 조회 1,924
19년 전 조회 2,372
19년 전 조회 1,988
19년 전 조회 1,864
19년 전 조회 2,262
19년 전 조회 2,350
19년 전 조회 5,114
19년 전 조회 2,497
19년 전 조회 3,354
19년 전 조회 2,813
19년 전 조회 2,569
19년 전 조회 4,851
19년 전 조회 2,714
19년 전 조회 2,561
19년 전 조회 2,109
19년 전 조회 1,898
19년 전 조회 3,502
19년 전 조회 2,474
19년 전 조회 6,316
19년 전 조회 2,181
19년 전 조회 2,066
19년 전 조회 2,859
19년 전 조회 1,961
19년 전 조회 2,432
19년 전 조회 2,263
19년 전 조회 3,711
19년 전 조회 2,718
19년 전 조회 2,908
19년 전 조회 4,521
19년 전 조회 3,696
19년 전 조회 2,468
19년 전 조회 4,458
19년 전 조회 3,433
19년 전 조회 4,294
19년 전 조회 2,166
19년 전 조회 2,365
19년 전 조회 2,299
19년 전 조회 3,502
19년 전 조회 2,868
19년 전 조회 3,662
19년 전 조회 2,830
19년 전 조회 2,662
19년 전 조회 2,497
19년 전 조회 2,390
19년 전 조회 2,279
19년 전 조회 4,410
19년 전 조회 2,831
19년 전 조회 2,306
19년 전 조회 2,411
19년 전 조회 2,993
19년 전 조회 2,109
19년 전 조회 3,354
19년 전 조회 2,907
19년 전 조회 2,418
19년 전 조회 1,945
19년 전 조회 2,397
19년 전 조회 2,170
19년 전 조회 2,044
19년 전 조회 2,613
19년 전 조회 2,469
19년 전 조회 4,038
19년 전 조회 3,895
19년 전 조회 2,402
19년 전 조회 3,439
19년 전 조회 2,104
19년 전 조회 2,534
19년 전 조회 2,422
19년 전 조회 2,489
19년 전 조회 2,331
19년 전 조회 2,963
19년 전 조회 2,974
19년 전 조회 3,313
19년 전 조회 3,184
19년 전 조회 2,851
19년 전 조회 3,071
19년 전 조회 3,309
19년 전 조회 3,025
19년 전 조회 2,756
19년 전 조회 3,083
19년 전 조회 4,661
19년 전 조회 2,571
19년 전 조회 2,593
19년 전 조회 3,641