search
HomeBackend DevelopmentPHP Tutorial邮件发送系统的用户名怎么设置


这是邮件发送代码发送后的到收件箱里收到的邮件、为什么他的名称是13435243125而不是我设置的那个邮件名呢!该怎么改

这是我的代码


回复讨论(解决方案)

怎么没人啊!

哥们你根本没写发送人的信息,发信人哪有,没看到!你只写了服务器端邮箱和title没有username

哥们你根本没写发送人的信息,发信人哪有,没看到!你只写了服务器端邮箱和title没有username
新手、代码怎么写啊!能不能发下、

//加载类库 PHPMailer	require("lib/PHPMailer_v5.1/class.phpmailer.php");		//实例化PHPMailer		date_default_timezone_set("Asia/Shanghai");//设定时区东八区		$mail = new PHPMailer();		$mail->IsHTML(true);				// 是否HTML格式邮件		$mail->CharSet = "GBK";             // 这里指定字符集!		$mail->Encoding = "base64";				$mail->IsSMTP();											//启用SMTP		$mail->Host = "smtp.qq.com";								//SMTP服务器		$mail->SMTPAuth = true;										//开启SMTP认证		$mail->Username = "sss.com";								//SMTP用户名		$mail->Password = "fqddind";								//SMTP密码		$mail->From = "sss";										//发件人地址		$mail->FromName = "aaaa";									//发件人		$mail->AddAddress('sssss');      							//添加收件人		$mail->AddReplyTo("s@qq.com", "sss");    					//回复地址		$mail->WordWrap = 100;										//设置每行字符长度

下载个phpmailer  实例化 填写相应参数 很简单  有问题再问

PHP code?1234567891011121314151617181920//加载类库 PHPMailer    require("lib/PHPMailer_v5.1/class.phpmailer.php");         //实例化PHPMailer        date_default_timezone_set("Asia/Shanghai");//设……
呃、这个phpmailer不是一个类吗?怎么有这么多的文件啊!

对就是是一个类
类也得放进文件里吧 - - 

引用 4 楼 nzr_dream 的回复:
PHP code?1234567891011121314151617181920//加载类库 PHPMailer    require("lib/PHPMailer_v5.1/class.phpmailer.php");         //实例化PHPMailer        date_default_timezone_set("Asia/Shanghai");//设……

 呃、这个phpmailer不是一个类吗?怎么有这么多的文件啊! 

无论你的目录怎么放
只要包含了class.phpmailer.php 就可以实例化 进行操作!

仔细看一下class.phpmailer.php 这个介绍
http://zixun2008.blog.163.com/blog/static/64221266201072854026244/
希望能帮到你

对就是是一个类
类也得放进文件里吧 - -
问一个问题那个class.phpmailer.php这个文件有多大啊!有没有一个网址给我现在我有一个但是他有报错了、

仔细看一下class.phpmailer.php 这个介绍
http://zixun2008.blog.163.com/blog/static/64221266201072854026244/
希望能帮到你
你又没有一个好的不用修改错误或警告的phpmailer下载网址啊!

问一个问题那个class.phpmailer.php这个文件有多大啊!有没有一个网址给我现在我有一个但是他有报错了、 

很小 三四百kb大概,你最好把代码贴出来,看看

最好不要动原来的东西,因为其中有require的关系 整个文件夹三四百kb





这个就是了、他也能发送邮件!不过里面的有几个警告!而且我找了很久都找不到字符编码在哪里设置!他的代码加上解释的代码有一千多行所以我只把错误的截图了!

最好不要动原来的东西,因为其中有require的关系 整个文件夹三四百kb
我下载了好几个!分别是:1.2M   103Kb  34KB!前两个都是很多文件后面那个就三个文件一个文件夹!我现在用的就是后面那个、也能发送成功、但是他的字符编码出现问题!不知道在哪里设置我找了一阵子找不到!QQ528259324 有时间吗?

Statement
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

Customizing/Extending Frameworks: How to add custom functionality.Customizing/Extending Frameworks: How to add custom functionality.Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!