初学php,mail()发邮件的有关问题,想咨询一下
初学php,mail()发邮件的问题,想咨询一下
目前正在w3school中学习基础语法,看到发邮件的案例
$to = "[email protected]";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "[email protected]";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
测试发送不了邮件
想咨询一下php发邮件就这么几句简单代码就能实现吗?不需要发件人的账号密码、等设置吗
------解决思路----------------------
用php mailer来发邮件 请参考视频教程 http://pan.baidu.com/s/1rIJeU 或者http://www.zixue.it/portal.php?mod=list&catid=11
------解决思路----------------------
mail 函数只能使用无需用户认证的发件服务器发送邮件
如果你用不要用户认证的发件服务器,还需要在 php.ini 中配置一下才可以使用 mail 函数
------解决思路----------------------
require_once ('email.class.php');
//##########################################
$smtpserver = "smtp.163.com";//SMTP服务器
$smtpserverport =25;//SMTP服务器端口
$smtpusermail = "[email protected]";//SMTP服务器的用户邮箱
$smtpemailto = $email;//发送给谁
$smtpuser = "name";//SMTP服务器的用户帐号
$smtppass = "addfgfdg";//SMTP服务器的用户密码
$mailsubject ="邮件主题";//邮件主题
$mailbody="邮件内容邮件内容邮件内容邮件内容"//邮件内容
$mailtype = "HTML";//邮件格式(HTML/TXT),TXT为文本邮件
$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);//这里面的一个true是表示使用身份验证,否则不使用身份验证.
$smtp->debug = FALSE;//是否显示发送的调试信息
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);
?>
------解决思路----------------------
需要认证的话还是用phpmailer 吧,简单配置几下就可以了。

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 ?

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

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

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