출처: 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>
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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 730 |
|
19년 전 | 2737 | |
| 729 |
그레이스웹
|
19년 전 | 3530 | |
| 728 |
|
19년 전 | 2717 | |
| 727 |
|
19년 전 | 2549 | |
| 726 |
|
19년 전 | 2367 | |
| 725 |
|
19년 전 | 2273 | |
| 724 |
|
19년 전 | 2159 | |
| 723 |
|
19년 전 | 4273 | |
| 722 |
|
19년 전 | 2701 | |
| 721 |
|
19년 전 | 2193 | |
| 720 |
|
19년 전 | 2292 | |
| 719 |
|
19년 전 | 2866 | |
| 718 |
|
19년 전 | 1978 | |
| 717 |
|
19년 전 | 3205 | |
| 716 |
|
19년 전 | 2768 | |
| 715 |
|
19년 전 | 2294 | |
| 714 |
|
19년 전 | 1847 | |
| 713 |
|
19년 전 | 2262 | |
| 712 |
|
19년 전 | 2023 | |
| 711 |
|
19년 전 | 1923 | |
| 710 |
|
19년 전 | 2494 | |
| 709 |
|
19년 전 | 2353 | |
| 708 |
|
19년 전 | 3906 | |
| 707 |
|
19년 전 | 3752 | |
| 706 |
|
19년 전 | 2259 | |
| 705 |
|
19년 전 | 3332 | |
| 704 |
|
19년 전 | 2007 | |
| 703 |
|
19년 전 | 2404 | |
| 702 |
|
19년 전 | 2300 | |
| 701 |
홀로남은자
|
19년 전 | 2363 | |
| 700 |
홀로남은자
|
19년 전 | 2189 | |
| 699 | 19년 전 | 2831 | ||
| 698 |
|
19년 전 | 2848 | |
| 697 |
|
19년 전 | 3190 | |
| 696 |
|
19년 전 | 3058 | |
| 695 |
|
19년 전 | 2731 | |
| 694 |
|
19년 전 | 2958 | |
| 693 |
|
19년 전 | 3212 | |
| 692 |
|
19년 전 | 2895 | |
| 691 |
|
19년 전 | 2646 | |
| 690 | 19년 전 | 2948 | ||
| 689 | 19년 전 | 4525 | ||
| 688 | 19년 전 | 2450 | ||
| 687 | 19년 전 | 2476 | ||
| 686 | 19년 전 | 3503 | ||
| 685 | 19년 전 | 3186 | ||
| 684 | 19년 전 | 2859 | ||
| 683 | 19년 전 | 2079 | ||
| 682 | 19년 전 | 1788 | ||
| 681 | 19년 전 | 2886 | ||
| 680 | 19년 전 | 1738 | ||
| 679 | 19년 전 | 2325 | ||
| 678 | 19년 전 | 3974 | ||
| 677 | 19년 전 | 3762 | ||
| 676 | 19년 전 | 3485 | ||
| 675 | 19년 전 | 3421 | ||
| 674 |
|
19년 전 | 1583 | |
| 673 |
|
19년 전 | 1942 | |
| 672 |
|
19년 전 | 1872 | |
| 671 | 19년 전 | 2539 | ||
| 670 | 19년 전 | 4655 | ||
| 669 |
|
19년 전 | 2783 | |
| 668 |
|
19년 전 | 1936 | |
| 667 |
|
19년 전 | 1956 | |
| 666 |
|
19년 전 | 1861 | |
| 665 |
|
19년 전 | 2596 | |
| 664 |
|
19년 전 | 8197 | |
| 663 |
|
19년 전 | 2748 | |
| 662 |
|
19년 전 | 2804 | |
| 661 |
|
19년 전 | 3063 | |
| 660 |
|
19년 전 | 2236 | |
| 659 |
|
19년 전 | 2259 | |
| 658 |
|
19년 전 | 2195 | |
| 657 |
|
19년 전 | 2098 | |
| 656 |
|
19년 전 | 2291 | |
| 655 |
|
19년 전 | 2547 | |
| 654 |
|
19년 전 | 3090 | |
| 653 | 19년 전 | 2343 | ||
| 652 | 19년 전 | 1929 | ||
| 651 |
|
19년 전 | 2871 | |
| 650 | 19년 전 | 5031 | ||
| 649 | 19년 전 | 3527 | ||
| 648 | 19년 전 | 3483 | ||
| 647 | 19년 전 | 2988 | ||
| 646 | 19년 전 | 2425 | ||
| 645 | 19년 전 | 1511 | ||
| 644 | 19년 전 | 3150 | ||
| 643 | 19년 전 | 2028 | ||
| 642 |
|
19년 전 | 5408 | |
| 641 | 19년 전 | 2447 | ||
| 640 | 19년 전 | 3445 | ||
| 639 | 19년 전 | 2884 | ||
| 638 | 19년 전 | 1771 | ||
| 637 | 19년 전 | 3887 | ||
| 636 | 19년 전 | 2437 | ||
| 635 | 19년 전 | 2326 | ||
| 634 |
|
19년 전 | 3029 | |
| 633 |
|
19년 전 | 3314 | |
| 632 | 19년 전 | 2524 | ||
| 631 | 19년 전 | 2282 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기