


The php mailer class calls the remote SMTP server to send mail implementation method_php skills
The example in this article describes how the php mailer class calls a remote SMTP server to send emails. Share it with everyone for your reference, the details are as follows:
php mailer is a very useful PHP email sending module. It can call local SMTP to send emails, and it can also call remote SMTP to send emails. However, you need to pay attention to some things when using it, otherwise it will cause In the case where the sending fails or cannot be called at all, this article will expand on the problems and solutions I encountered when using this class, and briefly explain the usage of php mailer and precautions.
First download the phpmailer class library file, download it here, only one resource point is needed. Download address: http://www.jb51.net/codes/27188.html
After downloading, place this file, class.phpmailer.php, in a directory of your project, and write this where you need to send emails:
<?php require 'class.phpmailer.php'; try { $mail = new PHPMailer(true); $body = file_get_contents('contents.html'); //邮件的内容写到contents.html页面里了 $body = preg_replace('//////','', $body); //Strip backslashes $mail->IsSMTP(); // tell the class to use SMTP $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = 25; // set the SMTP server port $mail->Host = "mail.yourdomain.com"; // 远程SMTP服务器 $mail->Username = "yourname@yourdomain.com"; // 远程SMTP 服务器上的用户名 $mail->Password = "yourpassword"; // 你的远程SMTP 服务器上用户对应的密码 //$mail->IsSendmail(); //告诉这个类使用Sendmail组件,使用的时候如果没有sendmail组建就要把这个注释掉,否则会有 $mail->AddReplyTo("yourname@yourdomain.com","First Last"); $mail->From = "fromname@yourdomain.com"; $mail->FromName = "First Last"; $to = "toname@domain.com"; $mail->AddAddress($to); $mail->Subject = "First PHPMailer Message"; $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test $mail->WordWrap = 80; // set word wrap $mail->MsgHTML($body); $mail->IsHTML(true); // send as HTML $mail->Send(); echo 'Message has been sent.'; } catch (phpmailerException $e) { echo $e->errorMessage(); } ?>
Note: The above $mail->IsSendmail(); needs to be commented out, otherwise if there is no sendmail component, the error "Could not execute: /var/qmail/bin/sendmail" will be prompted!
Readers who are interested in more PHP-related content can check out the special topics on this site: "Summary of PHP XML file operation skills", "Summary of php date and time usage", "php object-oriented programming introductory tutorial", "php string (string) usage summary", "php mysql database operation introductory tutorial" and "A summary of common database operation skills in PHP》
I hope this article will be helpful to everyone in PHP programming.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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