0

I have 2 servers, 1 is a small VPS with 128mb of RAM, the other is an old PC that I am running ubuntu on.

The old pc has way more ram and thus proves more useful but the only issue is that I cannot use php's mail() function as SMTP is blocked by my ISP.

I have heard on stackoverflow before that I can somehow make the 2 servers work together so I can send mail from the VPS while the script itself is on my old PC.

Thanks!

4

1 回答 1

1

您可以使用 PEAR 库连接到远程 SMTP 服务器。或者,您可以使用 Zend 框架的邮件功能。PHPMailer 是您的另一个选择。

PHPMailer 示例

require_once('../class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail             = new PHPMailer();

$body             = file_get_contents('contents.html');
$body             = eregi_replace("[\]",'',$body);

$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host       = "mail.yourdomain.com"; // SMTP server
$mail->SMTPDebug  = 2;                     // enables SMTP debug information (for testing)
                                           // 1 = errors and messages
                                           // 2 = messages only
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->Host       = "mail.yourdomain.com"; // sets the SMTP server
$mail->Port       = 26;                    // set the SMTP port for the GMAIL server
$mail->Username   = "yourname@yourdomain"; // SMTP account username
$mail->Password   = "yourpassword";        // SMTP account password

$mail->SetFrom('name@yourdomain.com', 'First Last');

$mail->AddReplyTo("name@yourdomain.com","First Last");

$mail->Subject    = "PHPMailer Test Subject via smtp, basic with authentication";

$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test

$mail->MsgHTML($body);

$address = "whoto@otherdomain.com";
$mail->AddAddress($address, "John Doe");

$mail->AddAttachment("images/phpmailer.gif");      // attachment
$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}

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";
}

?>
于 2012-11-24T22:20:25.647 回答