PHP implementation in the site to add mail to send the function _php instance

Source: Internet
Author: User
Tags auth explode php class php programming domain purchase purchase domain name

Below the summer blog to talk about how to add a message to the site to send the function.
First you need to download a PHP mail send class for SMTP, the code is as follows:

<?php class SMTP {/* Public Variables/public $smtp _port; 
  Public $time _out; 
  Public $host _name; 
  Public $log _file; 
  Public $relay _host; 
  Public $debug; 
  Public $auth; 
  Public $user; 
   
  Public $pass; 
 
  * Private Variables * * Private $sock;  /* Constractor/function smtp ($relay _host = "", $smtp _port =, $auth = False, $user, $pass) {$this->debug = 
    FALSE; 
    $this->smtp_port = $smtp _port; 
    $this->relay_host = $relay _host; $this->time_out = 30; 
    is used in Fsockopen () # $this->auth = $auth;//auth $this->user = $user; 
    $this->pass = $pass; # $this->host_name = "localhost"; 
     
    is used in HELO command $this->log_file = ""; 
  $this->sock = FALSE; }/* Main function/function SendMail ($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $BCC = "", $add Itional_headers = "") {$mail _from = $this->get_address ($this->strip_comment ($fROM)); $body = Preg_replace ("/(^|) ( \ r \ n)) (\ \.) 
    /"," \\1.\\3 ", $body); 
    $header. = "mime-version:1.0\r\n"; 
    if ($mailtype = = "HTML") {$header. = "content-type:text/html\r\n"; $header. = "To:". $to. " 
    \ r \ n "; if ($cc!= "") {$header. = "cc:". $cc. " 
    \ r \ n "; $header. = "From: $from <". $from. " 
    >\r\n "; $header. = "Subject:". $subject. " 
    \ r \ n "; 
    $header. = $additional _headers; $header. = "Date:". Date ("R"). " 
    \ r \ n "; $header. = "X-mailer:by Redhat (php/). Phpversion ().") 
    \ r \ n "; 
    List ($msec, $sec) = Explode ("", Microtime ()); $header. = "Message-id: <". Date ("Ymdhis", $sec). ($msec *1000000). ".". $mail _from. " 
    >\r\n "; 
   
    $TO = Explode (",", $this->strip_comment ($to)); 
    if ($cc!= "") {$TO = Array_merge ($TO, Explode (",", $this->strip_comment ($CC))); 
    } if ($bcc!= "") {$TO = Array_merge ($TO, Explode (",", $this->strip_comment ($BCC))); 
    } $sent = TRUE; ForeaCH ($TO as $rcpt _to) {$rcpt _to = $this->get_address ($rcpt _to); if (! $this->smtp_sockopen ($rcpt _to)) {$this->log_write ("Error:cannot send email to". $rcpt _to. " 
        \ n "); 
        $sent = FALSE; 
      Continue } if ($this->smtp_send ($this->host_name, $mail _from, $rcpt _to, $header, $body)) {$this->log_writ E ("Email has been sent to <". $rcpt _to. " 
      >\n "); else {$this->log_write ("Error:cannot Send email to <". $rcpt _to. " 
        >\n "); 
      $sent = FALSE; 
      } fclose ($this->sock); 
    $this->log_write ("Disconnected from remote host\n"); 
    echo "<br>"; 
    Echo $header; 
  return $sent; }/* Private functions/function Smtp_send ($helo, $from, $to, $header, $body = "") {if (! $this->s 
    Mtp_putcmd ("HELO", $helo)) {return $this->smtp_error ("Sending HELO command"); } #auth if ($this->auth) {if (! $this-; Smtp_putcmd ("AUTH LOGIN", Base64_encode ($this->user))) {return $this->smtp_error ("Sending HELO command"); } if (! $this->smtp_putcmd ("", Base64_encode ($this->pass)) {return $this->smtp_error ("se 
      nding HELO command "); } # if (! $this->smtp_putcmd ("MAIL", "from:<". $from. " 
    > ") {return $this->smtp_error (" Sending MAIL from command "); if (! $this->smtp_putcmd ("RCPT", "to:<". $to. " 
    > ") {return $this->smtp_error (" Sending RCPT to command "); 
    } if (! $this->smtp_putcmd ("data")) {return $this->smtp_error ("Sending data Command"); 
    } if (! $this->smtp_message ($header, $body)) {return $this->smtp_error ("Sending message"); } if (! $this->smtp_eom ()) {return $this->smtp_error ("Sending <cr><lf>.<cr><lf&gt ; 
    [EOM] "); } if (! $this->smtp_putcmd ("QUIT")) {RETUrn $this->smtp_error ("Sending QUIT command"); 
  return TRUE; The function Smtp_sockopen ($address) {if ($this->relay_host = = "") {return $this->smtp_sockopen_ 
    MX ($address); 
    else {return $this->smtp_sockopen_relay (); The function Smtp_sockopen_relay () {$this->log_write ("trying to". $this->relay_host. ":" $this->s Mtp_port. " 
    \ n "); 
    $this->sock = @fsockopen ($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out); if (!) ( $this->sock && $this->smtp_ok ()) {$this->log_write ("Error:cannot connenct to relay host". $this ->relay_host. " 
      \ n "); $this->log_write ("Error:". $errstr. " (". $errno.") 
      \ n "); 
    return FALSE; $this->log_write ("Connected to relay Host". $this->relay_host. " 
    \ n "); 
  return TRUE;;; 
  The function smtp_sockopen_mx ($address) {$domain = Preg_replace ("/^.+@ ([^@]+) $/", "\\1", $address);  if (! @getmxrr ($domain, $MXHOSTS)) {$this->log_write ("error:cannot resolve MX \" ". $domain." 
      \ n "); 
    return FALSE; foreach ($MXHOSTS as $host) {$this->log_write ("trying to". $host. ":". $this->smtp_port. " 
      \ n "); 
      $this->sock = @fsockopen ($host, $this->smtp_port, $errno, $errstr, $this->time_out); if (!) ( $this->sock && $this->smtp_ok ()) {$this->log_write ("Warning:cannot Connect to MX host". $host ." 
        \ n "); $this->log_write ("Error:". $errstr. " (". $errno.") 
        \ n "); 
      Continue $this->log_write ("Connected to MX host". $host. " 
      \ n "); 
    return TRUE; $this->log_write ("Error:cannot connect to any MX hosts (". Implode (",", $MXHOSTS). ") 
    \ n "); 
  return FALSE; function Smtp_message ($header, $body) {fputs ($this->sock, $header.) 
    \ r \ n ". $body); $this->smtp_debug (">". Str_replace ("\ r \ n", "\ n".) > ", $header." \n> ". $body." \n&gT 
     
    ")); 
  return TRUE; 
    function Smtp_eom () {fputs ($this->sock, "\r\n.\r\n"); $this->smtp_debug (". 
     
    [eom]\n "); 
  return $this-&GT;SMTP_OK (); 
    function Smtp_ok () {$response = Str_replace ("\ r \ n", "", Fgets ($this->sock, 512)); $this->smtp_debug ($response.) 
     
    \ n "); 
      if (!preg_match ("/^[23]/", $response)) {fputs ($this->sock, "quit\r\n"); 
      Fgets ($this->sock, 512); $this->log_write ("Error:remote host returned \" ". $response." 
      \ n "); 
    return FALSE; 
  return TRUE; 
      The function smtp_putcmd ($cmd, $arg = "") {if ($arg!= "") {if ($cmd = = "") $cmd = $arg; else $cmd = $cmd. " 
    ". $arg; Fputs ($this->sock, $cmd. " 
    \ r \ n "); $this->smtp_debug (">". $cmd. " 
 
    \ n "); 
  return $this-&GT;SMTP_OK (); The function Smtp_error ($string) {$this->log_write ("Error:error occurred while". $string. "). 
    \ n "); 
  return FALSE;function Log_write ($message) {$this->smtp_debug ($message); 
    if ($this->log_file = = "") {return TRUE; $message = Date ("M D h:i:s"). Get_current_user (). 
    [". Getmypid ()."]: ". $message; if (! @file_exists ($this->log_file) | |! ( $fp = @fopen ($this->log_file, "a")) {$this->smtp_debug ("warning:cannot open log file \" ". $this->log_fil E. " 
      \ n "); 
    return FALSE; 
    Flock ($FP, LOCK_EX); 
    Fputs ($fp, $message); 
     
    Fclose ($FP); 
  return TRUE; 
    The function strip_comment ($address) {$comment = "/\\ ([^ ()]*\\)/"; 
    while (Preg_match ($comment, $address)) {$address = Preg_replace ($comment, "", $address); 
  return $address; 
    function Get_address ($address) {$address = Preg_replace ("/([\t\r\n]) +/", "", $address); 
     
    $address = Preg_replace ("/^.*< (. +) >.*$/", "\\1", $address); 
  return $address; } function Smtp_debug ($messAge) {if ($this->debug) {echo $message. 
    <br> "; 
   
  } function Get_attach_type ($image _tag) {//$filedata = Array (); 
  $img _file_con=fopen ($image _tag, "R"); 
  unset ($image _data); 
  while ($tem _buffer=addslashes ($img _file_con,filesize ($image _tag))) $image _data.= $tem _buffer; 
 
  Fclose ($img _file_con); 
  $filedata [' context '] = $image _data; 
  $filedata [' filename ']= basename ($image _tag); 
  $extension =substr ($image _tag,strrpos ($image _tag, "."), strlen ($image _tag)-strrpos ($image _tag, ".")); 
      Switch ($extension) {case ". gif": $filedata [' type '] = "image/gif"; 
    Break 
      Case ". Gz": $filedata [' type '] = "application/x-gzip"; 
    Break 
      Case ". htm": $filedata [' type '] = "text/html"; 
    Break 
      Case ". html": $filedata [' type '] = "text/html"; 
    Break 
      Case ". jpg": $filedata [' type '] = "image/jpeg"; 
    Break Case ". Tar": $filedata [' type '] = ' application/x-taR "; 
    Break 
      Case ". txt": $filedata [' type '] = "text/plain"; 
    Break 
      Case ". zip": $filedata [' type '] = "application/zip"; 
    Break 
      Default: $filedata [' type '] = "application/octet-stream"; 
  Break 
  return $filedata;
 }//End Class?>

This type of mail sent online there are many, you can pick a favorite on the line, the above code to save the ZC_Email.class.php file, and then use the direct include_once ("ZC_Email.class.php") on it, the code is as follows :

<?php 
include_once ("ZC_Email.class.php");
? >

This is the message sent to the class has been embedded in the page, the next step is to send the content on the page, my system here is the user to purchase a successful send, the example code is as follows:

//space purchase successfully sent mail $smtpserver =" smtp.163.com ";//smtp Server $smtpserverport =25;//SMTP Service  Port $smtpusermail = "xiariboke@163.com";//smtp server's user mailbox $smtpemailto = "xiariboke@qq.com"; Who to send to $smtpuser = 
    "xiariboke@163.com"//SMTP Server user account $smtppass = "Xiariboke";//smtp user password for the server $mailsubject = "Boutique Door Industry Network Hong Kong Space purchase";/Mail subject $mailbody = "Successful purchase of Hong Kong space $size m space, purchase domain name: $domain purchase time is:". Format_date (Times (), 2). "Expires in: $lasttime". Format_date (Time (), 5) ;//message content $mailtype = "txt";//Message Format (html/txt), TXT for text mail ########################################## $smtp = new 
    SMTP ($smtpserver, $smtpserverport, True, $smtpuser, $smtppass);//One of the true in this is to use authentication, otherwise authentication is not used. $SMTP->debug = false;//whether to display the debug information sent $smtp->sendmail ($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailt 
    YPE); Mail sent over ShowMsg (' buy success!
', ' zc_link_list.php?sort=2 '); 

The SMTP server in which the user's mailbox and password to set up, this is sent to a designated mailbox, of course, can be customized to their own, which variables are used in my site, if you do not need to be able to modify their own slightly, here is not much to say.
Hopefully this article will help you learn about PHP programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.