phpmailer sending email library
Release: 2016-07-25 09:11:04
Original
1128 people have browsed it
phpmailer 发送邮件类库
- header('Content-Type: text/html; charset=utf-8');
- require("phpmailer/class.phpmailer.php");
- error_reporting(E_ERROR);
- function smtp_mail ( $sendto_email, $subject, $body ,$att=array()) {
- $mail = new PHPMailer();
- $mail->IsSMTP();
-
- $mail->Host = "asdfasdfasdf.com";
- $mail->Username = "asdfasdfasdfsd@com.cn";
- $mail->Password = "234234234234234";
-
- $mail->FromName = "管理员";
- $mail->SMTPAuth = true;
- $mail->From = $mail->Username;
- $mail->CharSet = "utf-8";
- $mail->Encoding = "base64";
- $mail->AddAddress($sendto_email);
- foreach($att as $key=>$val){
- if(!empty($val)){
- $mail->AddAttachment($val); //注意要给绝对路径
- }
- }
-
- $mail->IsHTML(true);
- $mail->Subject = $subject;
- $mail->Body = $body;
- $mail->AltBody ="text/html";
- if(!$mail->Send()) {
- echo "邮件错误信息: " . $mail->ErrorInfo;
- }else{
- echo "邮件发送成功!";
- }
- }
-
- $body = '
-
-
-
-
-
- 欢迎来到http://www.sdfsadfsfsdf.com
- 感谢您注册为本站会员!
-
-
- ';
- // 参数说明(发送地址, 邮件主题, 邮件内容,附件绝对路径)
- smtp_mail('2342342342342@qq.com', '欢迎你的到来', $body,array('C:/xampp/htdocs/复件.txt'));
-
- ?>
复制代码
|
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31