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,600
19년 전 조회 1,852
19년 전 조회 2,996
19년 전 조회 2,115
19년 전 조회 3,371
19년 전 조회 3,286
19년 전 조회 2,398
19년 전 조회 1,953
19년 전 조회 2,990
19년 전 조회 3,050
19년 전 조회 4,177
19년 전 조회 2,148
19년 전 조회 2,796
19년 전 조회 2,502
19년 전 조회 3,636
19년 전 조회 1,585
19년 전 조회 1,639
19년 전 조회 1,933
19년 전 조회 2,376
19년 전 조회 1,992
19년 전 조회 1,873
19년 전 조회 2,266
19년 전 조회 2,360
19년 전 조회 5,124
19년 전 조회 2,503
19년 전 조회 3,361
19년 전 조회 2,819
19년 전 조회 2,575
19년 전 조회 4,860
19년 전 조회 2,717
19년 전 조회 2,569
19년 전 조회 2,113
19년 전 조회 1,904
19년 전 조회 3,510
19년 전 조회 2,486
19년 전 조회 6,324
19년 전 조회 2,190
19년 전 조회 2,072
19년 전 조회 2,870
19년 전 조회 1,967
19년 전 조회 2,437
19년 전 조회 2,268
19년 전 조회 3,720
19년 전 조회 2,724
19년 전 조회 2,914
19년 전 조회 4,529
19년 전 조회 3,701
19년 전 조회 2,475
19년 전 조회 4,465
19년 전 조회 3,441
19년 전 조회 4,298
19년 전 조회 2,172
19년 전 조회 2,369
19년 전 조회 2,303
19년 전 조회 3,506
19년 전 조회 2,873
19년 전 조회 3,671
19년 전 조회 2,837
19년 전 조회 2,668
19년 전 조회 2,505
19년 전 조회 2,393
19년 전 조회 2,285
19년 전 조회 4,418
19년 전 조회 2,837
19년 전 조회 2,312
19년 전 조회 2,418
19년 전 조회 2,997
19년 전 조회 2,121
19년 전 조회 3,357
19년 전 조회 2,911
19년 전 조회 2,423
19년 전 조회 1,952
19년 전 조회 2,403
19년 전 조회 2,176
19년 전 조회 2,049
19년 전 조회 2,620
19년 전 조회 2,474
19년 전 조회 4,045
19년 전 조회 3,900
19년 전 조회 2,412
19년 전 조회 3,443
19년 전 조회 2,118
19년 전 조회 2,543
19년 전 조회 2,426
19년 전 조회 2,498
19년 전 조회 2,338
19년 전 조회 2,971
19년 전 조회 2,980
19년 전 조회 3,319
19년 전 조회 3,191
19년 전 조회 2,860
19년 전 조회 3,077
19년 전 조회 3,320
19년 전 조회 3,030
19년 전 조회 2,766
19년 전 조회 3,087
19년 전 조회 4,665
19년 전 조회 2,573
19년 전 조회 2,603
19년 전 조회 3,648