首页 PHP 库 其它类库 发送电子邮件的php类
发送电子邮件的php类
<?php
class SendM{
  private $Mailhost,$Mailuser,$Mailpwd,$Mailport,$Mailtimeout,$ms,$ending = "\r\n",$endingc="\n";
  function __construct($Mailhost,$Mailuser,$Mailpwd,$Mailport,$Mailtimeout){
    $this->Mailhost=$Mailhost;
    $this->Mailuser=$Mailuser;
    $this->Mailpwd=$Mailpwd;
    $this->Mailport=$Mailport;
    $this->Mailtimeout=$Mailtimeout;
    $this->ConnectSmtpServer();
  }
  private function ConnectSmtpServer(){
    if(!is_string($this->Mailhost)){ settype(trim($this->Mailhost),"string"); }
    if(!is_integer($this->Mailport)){ settype(trim($this->Mailport),"integer"); }
    if(!is_integer($this->Mailtimeout)){ settype(trim($this->Mailtimeout),"integer"); }
    $this->ms=@fsockopen($this->Mailhost,$this->Mailport,$this->errorno,$this->errorstr,$this->Mailtimeout);
    if(substr(PHP_OS,0,3) != "WIN"){ stream_set_timeout($this->ms, $this->Mailtimeout, 0);}
    $rcp = $this->get_echo();
    fputs($this->ms,"ehlo bobo".$this->ending);
    $rcp = $this->get_echo();
    if(substr($rcp,0,3)!='250'){ return false; }
    fputs($this->ms,'auth login'.$this->ending);
    $rcp = $this->get_echo();
    if(substr($rcp,0,3)=='334'){ $this->Auth($this->Mailuser,$this->Mailpwd); }else{ return false; } }
  private function Auth($Mailuser,$Mailpwd){
    $this->Mailuseren=base64_encode($Mailuser); $this->Mailpwden=base64_encode($Mailpwd);
    fputs($this->ms,$this->Mailuseren.$this->ending);
    $rcp = $this->get_echo();
    fputs($this->ms,$this->Mailpwden.$this->ending);
    $rcp = $this->get_echo();  }
  private function get_echo(){
    $edata=""; while($estr=@fgets($this->ms,600)){ $edata .= $estr;
      if(substr($estr,3,1) == " ") { break; }  }
    return $edata; }
  public function Send($to,$subject,$connect){
    $host=explode('.',$this->Mailhost);
    $fromaddress=$this->Mailuser.'@'.$host[1].'.'.$host[2];
    fputs($this->ms,'mail from:<'.$fromaddress.'>'.$this->ending);
    $rcp = $this->get_echo();
    fputs($this->ms,'rcpt to:<'.$to.'>'.$this->ending);
    $rcp = $this->get_echo();
    fputs($this->ms,'data'.$this->ending);
    $rcp = $this->get_echo();
    fputs($this->ms,"to:$to".$this->endingc);
    fputs($this->ms,"from:$fromaddress".$this->endingc);
    fputs($this->ms,"subject:$subject".$this->endingc.$this->endingc);
    fputs($this->ms,"$connect".$this->endingc);
    fputs($this->ms,'.'.$this->ending);
    $rcp = $this->get_echo(); if(substr($rcp,0,3)=='250'){header("Location:main_pro.php?act=msg&errors=on&msg=邮件发送成功!已成功提交至对方服务器!"); }else{ header("Location:main_pro.php?act=msg&errors=on&msg=很遗憾,邮件发送失败了!请检查邮件账户配置是否正确!"); }
  }
}
?>

这是一个发送电子邮件的php类,需要的朋友可以下载使用。

使用说明:

$m= new SendM('smtp服务器地址','账号','密码',端口(int),超时重试时间(int));

$m->Send('收件人邮箱 ','主题','邮件正文内容');

使用范例:

$m= new SendM('smtp.yeah.net','testuser','testuserpwd',25,30);

$m->Send('a@coolmr.com ','测试邮件','这是一封邮件发送类的测试邮件,谢谢您的支持');

免责声明

本站所有资源均由网友贡献或各大下载网站转载。请自行检查软件的完整性!本站所有资源仅供学习参考。请不要将它们用于商业目的。否则,一切后果由您负责!如有侵权,请联系我们删除。联系方式:admin@php.cn

相关文章

ThinkPHP使用PHPMailer发送邮件的例子 ThinkPHP使用PHPMailer发送邮件的例子

24 Nov 2017

相信很多同学都用过thinkphp,而thinkphp这个框架本身也有类库,这篇文章我们来讲讲thinkphp怎么使用外部PHPMailer类库。

如何使用PHP对接邮件类实现邮件定时发送功能? 如何使用PHP对接邮件类实现邮件定时发送功能?

06 Aug 2023

如何使用PHP对接邮件类实现邮件定时发送功能?随着互联网的快速发展,邮件已经成为了人们在日常生活和工作中必不可少的一种沟通方式。而对于一些特定的需求,比如定时发送邮件,就需要借助PHP对接邮件类来实现。PHP作为一种强大的后端开发语言,拥有丰富的扩展库和第三方类库,其中也包括了很多邮件类库。今天我们将介绍如何使用一个常用的邮件类库来实现邮件的定时发送功能。首

PHP邮件发送类PHPMailer用法实例详解,邮件发送phpmailer PHP邮件发送类PHPMailer用法实例详解,邮件发送phpmailer

13 Jun 2016

PHP邮件发送类PHPMailer用法实例详解,邮件发送phpmailer。PHP邮件发送类PHPMailer用法实例详解,邮件发送phpmailer 本文实例讲述了PHP邮件发送类PHPMailer用法,并详细讲述了其具体的操作步骤。分享给大

使用 PHP 安全地传送电子邮件:使用 SMTP 发送无垃圾邮件的指南 使用 PHP 安全地传送电子邮件:使用 SMTP 发送无垃圾邮件的指南

28 Sep 2024

以下是如何使用 PHP SMTP 发送电子邮件而不进入垃圾邮件文件夹的分步示例。 我们将使用 PHPMailer 库,它简化了通过 SMTP 发送电子邮件的过程,并有助于提高送达率。按照以下步骤,您将了解如何

Laravel - 发送电子邮件 Laravel - 发送电子邮件

27 Aug 2024

Laravel - 发送电子邮件 - Laravel 使用功能丰富的免费库 SwiftMailer 发送电子邮件。使用库函数,我们可以轻松地发送电子邮件,而无需太多麻烦。电子邮件模板的加载方式与视图相同,这意味着您可以

如何使用PHP对接邮件类实现邮件附件的发送和接收? 如何使用PHP对接邮件类实现邮件附件的发送和接收?

06 Aug 2023

如何使用PHP对接邮件类实现邮件附件的发送和接收?随着互联网的发展,电子邮件已经成为人们生活中不可或缺的部分。在开发网站或者应用的过程中,我们常常需要发送包含附件的邮件,例如发送图片、文档等。本文将介绍如何使用PHP对接邮件类实现邮件附件的发送和接收。在PHP中,我们可以使用第三方库PHPMailer来快速、简便地实现邮件的发送和接收。PHPMailer是一

See all articles