CharSet = "utf-8";" code to the php code to return to normal."/> CharSet = "utf-8";" code to the php code to return to normal.">

Home  >  Article  >  Backend Development  >  php sends email with garbled characters

php sends email with garbled characters

藏色散人
藏色散人Original
2019-10-16 10:02:592694browse

php sends email with garbled characters

Solution to php sending garbled email address:

php sending garbled email address:

                $mail = new PHPMailer();
                $mail->IsSMTP();
                $mail->SMTPAuth = true;
                $mail->Host = $smtp;
                $mail->Username = $youremail;
                $mail->Password = $password; //必填, 以上邮箱对应的密码
                $mail->From = $youremail;
                $mail->FromName = $site_name; //发件人称呼
                $mail->AddAddress($ymail,$yname);
                $mail->CharSet = "utf-8";

Because the tenth line of code is missing, just add the $mail->CharSet = "utf-8"; code here.

Introduction to php:

PHP was originally the abbreviation of Personal Home Page and has been officially renamed "PHP: Hypertext Preprocessor". Since the domestic Internet began to develop in the 1990s, Internet information has covered almost all areas of knowledge in our daily activities, and has gradually become an indispensable part of our lives, studies, and work. According to statistics, since 2003, the size of my country's web pages has basically maintained a doubling growth rate, and is showing an upward trend. As the most popular website program development language today, PHP language has the advantages of low cost, fast speed, good portability, and rich built-in function libraries. Therefore, it is used by more and more companies in website development. However, with the continuous upgrading of the Internet, many problems have arisen in the PHP language.

According to the requirements of dynamic websites, PHP language, as a language program, its specificity gradually appears in the application process, and its technical level will directly affect the operating efficiency of the website. Its characteristics are that it has an open source code and is highly similar to general-purpose languages ​​such as C language in terms of programming. Therefore, it is easy to understand and has strong operability during operation. At the same time, the PHP language has a high level of data transmission, processing and output, and can be widely used in Windows systems and various types of Web servers. If the amount of data is large, the PHP language can also broaden the link surface and connect to various databases to alleviate the pressure of data storage, retrieval and maintenance. With the development of technology, PHP language search engines can also be tailored to provide personalized services, such as classifying, collecting and storing data according to customer preferences, which greatly improves data operation efficiency.

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of php sends email with garbled characters. For more information, please follow other related articles on the PHP Chinese website!

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