Home php教程 php手册 php教程:利用mail函数发送附件

php教程:利用mail函数发送附件

Jun 06, 2016 pm 08:09 PM
mail php function use send construction Tutorial appendix

大家建设网站之后,为了安全,大家可能都会想到定时备份或者是手动备份数据库和文件。而其实,我们可以通过邮箱来存储我们需要的数据库文件和网站相关的文件。邮箱的大容量和可以存储附件的特性也就决定了我们可以尝试性地把数据库文件和网站文件当作附件发

大家建设网站之后,为了安全,大家可能都会想到定时备份或者是手动备份数据库和文件。而其实,我们可以通过邮箱来存储我们需要的数据库文件和网站相关的文件。邮箱的大容量和可以存储附件的特性也就决定了我们可以尝试性地把数据库文件和网站文件当作附件发送到指定邮箱存储起来,完成备份的任务。我们就下来就看看,我们如何通过php的mail组件发送带着附件的邮件哦。

<?php ? ??
//设置目标又想 ??
$to=array('IT路人','xxxxx@itluren.com');? ??
//设置邮件主题? ??
$subject?=?'发送附件啊';? ??
//设置发送者相关信息 ??
$from?=?array("来源地",?"xxx@site.com");? ??
//设置header头部信息? ??
$random_hash?=?md5(date('r',?time()));?? ??
$mime_boundary?=?"==Multipart_Boundary_x{$random_hash}x";?? ??
$headers??=?'MIME-Version:?1.0'?.?"\r\n";? ??
$headers?.=?'Content-Type:?multipart/mixed;?boundary="'.$mime_boundary.'"'?.?"\r\n";? ??
$headers?.=?'To:?'.$to[0].'?<'.$to[1].'>'?.?"\r\n";? ??
$headers?.=?'From:?'.$from[0].'?'?.?"\r\n";? ??
//邮件主要内容啊(支持HTML) ??
$message?=?'这是一个HTML标签的信息。他给你送来了你需要的附件!!'."\n\n".? ??
"--{$mime_boundary}\n"?.? ??
"Content-Type:text/html;?charset=\"UTF-8\"\n"?.? ??
"Content-Transfer-Encoding:?7bit\n\n"?.? ??
$message?.?"\n\n";? ??
//设置附件哦:? ??
$name?=?'itluren.jpg';? ??
//?The?path?to?the?image?with?the?file?name:? ??
$fileatt?=?"images/".$name;? ??
$fileatt_type?=?"application/octet-stream";?//文件类型 ??
//把文件名变作附件名 ??
$fileatt_name?=?$name;?? ??
//读取相关文件? ??
$file?=?fopen($fileatt,'rb');? ??
$data?=?fread($file,filesize($fileatt));? ??
fclose($file);?? ??
//转换大小信息? ??
$data?=?chunk_split(base64_encode($data)); ??
//加上附件 ??
$message?.=?"--{$mime_boundary}\n"?.? ??
"Content-Type:?{$fileatt_type};\n"?.? ??
"?name=\"{$fileatt_name}\"\n"?.? ??
"Content-Transfer-Encoding:?base64\n\n"?.? ??
$data?.?"\n\n"?.? ??
"--{$mime_boundary}\n";? ??
unset($data);? ??
unset($file);? ??
unset($fileatt);? ??
unset($fileatt_type);? ??
unset($fileatt_name);? ??
//开始发送鸟 ??
mail($to[1],?$subject,?$message,?$headers);? ??
?>??
Copy after login

如果大家有心+想更加方便,大家可以加上一个定时自动发送,配合好创建压缩包和数据库备份文件,我们就可以让网站自动完成数据库和文件的备份。

声明: 本文采用 BY-NC-SA 协议进行授权 | IT路人
转载请注明转自《php教程:利用mail函数发送附件》

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles