출처: 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년 전 | 2754 | |
| 729 |
그레이스웹
|
19년 전 | 3540 | |
| 728 |
|
19년 전 | 2728 | |
| 727 |
|
19년 전 | 2555 | |
| 726 |
|
19년 전 | 2376 | |
| 725 |
|
19년 전 | 2285 | |
| 724 |
|
19년 전 | 2161 | |
| 723 |
|
19년 전 | 4278 | |
| 722 |
|
19년 전 | 2704 | |
| 721 |
|
19년 전 | 2202 | |
| 720 |
|
19년 전 | 2300 | |
| 719 |
|
19년 전 | 2867 | |
| 718 |
|
19년 전 | 1983 | |
| 717 |
|
19년 전 | 3209 | |
| 716 |
|
19년 전 | 2781 | |
| 715 |
|
19년 전 | 2308 | |
| 714 |
|
19년 전 | 1853 | |
| 713 |
|
19년 전 | 2273 | |
| 712 |
|
19년 전 | 2025 | |
| 711 |
|
19년 전 | 1926 | |
| 710 |
|
19년 전 | 2503 | |
| 709 |
|
19년 전 | 2361 | |
| 708 |
|
19년 전 | 3914 | |
| 707 |
|
19년 전 | 3753 | |
| 706 |
|
19년 전 | 2268 | |
| 705 |
|
19년 전 | 3346 | |
| 704 |
|
19년 전 | 2020 | |
| 703 |
|
19년 전 | 2410 | |
| 702 |
|
19년 전 | 2302 | |
| 701 |
홀로남은자
|
19년 전 | 2370 | |
| 700 |
홀로남은자
|
19년 전 | 2192 | |
| 699 | 19년 전 | 2834 | ||
| 698 |
|
19년 전 | 2856 | |
| 697 |
|
19년 전 | 3192 | |
| 696 |
|
19년 전 | 3060 | |
| 695 |
|
19년 전 | 2735 | |
| 694 |
|
19년 전 | 2963 | |
| 693 |
|
19년 전 | 3218 | |
| 692 |
|
19년 전 | 2902 | |
| 691 |
|
19년 전 | 2654 | |
| 690 | 19년 전 | 2956 | ||
| 689 | 19년 전 | 4533 | ||
| 688 | 19년 전 | 2461 | ||
| 687 | 19년 전 | 2481 | ||
| 686 | 19년 전 | 3510 | ||
| 685 | 19년 전 | 3199 | ||
| 684 | 19년 전 | 2874 | ||
| 683 | 19년 전 | 2085 | ||
| 682 | 19년 전 | 1791 | ||
| 681 | 19년 전 | 2888 | ||
| 680 | 19년 전 | 1744 | ||
| 679 | 19년 전 | 2327 | ||
| 678 | 19년 전 | 3979 | ||
| 677 | 19년 전 | 3775 | ||
| 676 | 19년 전 | 3500 | ||
| 675 | 19년 전 | 3429 | ||
| 674 |
|
19년 전 | 1586 | |
| 673 |
|
19년 전 | 1950 | |
| 672 |
|
19년 전 | 1877 | |
| 671 | 19년 전 | 2544 | ||
| 670 | 19년 전 | 4669 | ||
| 669 |
|
19년 전 | 2789 | |
| 668 |
|
19년 전 | 1941 | |
| 667 |
|
19년 전 | 1966 | |
| 666 |
|
19년 전 | 1867 | |
| 665 |
|
19년 전 | 2605 | |
| 664 |
|
19년 전 | 8210 | |
| 663 |
|
19년 전 | 2756 | |
| 662 |
|
19년 전 | 2807 | |
| 661 |
|
19년 전 | 3070 | |
| 660 |
|
19년 전 | 2248 | |
| 659 |
|
19년 전 | 2275 | |
| 658 |
|
19년 전 | 2201 | |
| 657 |
|
19년 전 | 2103 | |
| 656 |
|
19년 전 | 2299 | |
| 655 |
|
19년 전 | 2553 | |
| 654 |
|
19년 전 | 3092 | |
| 653 | 19년 전 | 2348 | ||
| 652 | 19년 전 | 1933 | ||
| 651 |
|
19년 전 | 2877 | |
| 650 | 19년 전 | 5035 | ||
| 649 | 19년 전 | 3537 | ||
| 648 | 19년 전 | 3492 | ||
| 647 | 19년 전 | 2998 | ||
| 646 | 19년 전 | 2437 | ||
| 645 | 19년 전 | 1520 | ||
| 644 | 19년 전 | 3160 | ||
| 643 | 19년 전 | 2031 | ||
| 642 |
|
19년 전 | 5413 | |
| 641 | 19년 전 | 2452 | ||
| 640 | 19년 전 | 3450 | ||
| 639 | 19년 전 | 2893 | ||
| 638 | 19년 전 | 1774 | ||
| 637 | 19년 전 | 3892 | ||
| 636 | 19년 전 | 2443 | ||
| 635 | 19년 전 | 2332 | ||
| 634 |
|
19년 전 | 3030 | |
| 633 |
|
19년 전 | 3320 | |
| 632 | 19년 전 | 2527 | ||
| 631 | 19년 전 | 2286 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기