Php example of sending emails with attachments _ PHP Tutorial

Source: Internet
Author: User
Tags php example sendfile
Example of sending an email with attachments in php. Php sends emails. there will be many related articles on the internet. This article describes sending emails with attachments. if you are not familiar with this, refer to the emailclass. php code below :? ClassCMai php will send emails in many related articles on the internet. This article introduces you to sending emails with attachments. if you are not familiar with it, refer

The emailclass. php code is as follows: Subject = $ subject; $ this-> addr_to = $ to; $ this-> smtp_headers = $ this-> write_smtpheaders ($ from ); $ this-> text_body = $ this-> write_body ($ msg); $ this-> text_encoded = $ this-> attach_file ($ filename, $ downfilename, $ mimetype, $ mime_filename); $ this-> mime_headers = $ this-> write_mimeheaders ($ filename, $ mime_filename);} function attach_file ($ filename, $ downfilename, $ mimetype, $ mime_filename) {$ encoded = $ this-> Encode_file ($ filename); if ($ mime_filename) $ filename = $ mime_filename; $ out = "--". $ this-> mime_boundary. "\ n"; $ out = $ out. "Content-type :". $ mimetype. "; name = \" $ filename \ "; \ n"; $ out = $ out. "Content-Transfer-Encoding: base64 \ n"; $ out = $ out. "Content-disposition: attachment; filename = \" $ downfilename \ "\ n"; $ out = $ out. $ encoded. "\ n"; $ out = $ out. "--". $ this-> mime_boundary. "--". "\ N"; return $ out;} function encode_file ($ sourcefile) {if (is_readable ($ sourcefile) {$ fd = fopen ($ sourcefile, "r "); $ contents = fread ($ fd, filesize ($ sourcefile); $ encoded = chunk_split (base64_encode ($ contents); fclose ($ fd);} return $ encoded ;} function sendfile () {$ headers = $ this-> smtp_headers. $ this-> mime_headers; $ message = $ this-> text_body. $ this-> text_encoded; mail ($ this-> addr_to, $ This-> subject, $ message, $ headers);} function write_body ($ msgtext) {$ out = "--". $ this-> mime_boundary. "\ n"; $ out = $ out. "Content-Type: text/plain; charset = \" us-ascii \ "\ n"; $ out = $ out. $ msgtext. "\ n"; return $ out;} function write_mimeheaders ($ filename, $ mime_filename) {if ($ mime_filename) $ filename = $ mime_filename; $ out = "MIME-version: 1.0 \ n "; $ out = $ out. "Content-type: multipart/ Mixed; "; $ out = $ out. "boundary = \" $ this-> mime_boundary \ "\ n"; $ out = $ out. "Content-transfer-encoding: 7BIT \ n"; $ out = $ out. "X-attachments: $ filename; \ n"; return $ out;} function write_smtpheaders ($ addr_from) {$ out = "From: $ addr_from \ n "; $ out = $ out. "Reply-To: $ addr_from \ n"; $ out = $ out. "X-Mailer: PHP3 \ n"; $ out = $ out. "X-Sender: $ addr_from \ n"; return $ out ;}}/* usage-for example, if mimetype is "I Mage/gif "$ mailfile = new CMailFile ($ subject, $ sendto, $ replyto, $ message, $ filename, $ mimetype); $ mailfile-> sendfile (); $ subject -- topic $ sendto -- recipient address $ replyto -- Reply address $ message -- Mail content $ filename -- attachment file name $ downfilename -- file name of the lower-end region $ mimetype -- mime type */?> The Demo code is as follows: Sendfile ();?>

The emailclass. php code is as follows :? Class CMai...

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.