


Solution to the garbled problem of sending emails based on python_PHP tutorial
In company projects, emails need to be sent through the background, and the email content includes image attachments. If sent through PHPmailer, due to possible delays in the mail server, sending emails through PHPmailer requires waiting for the email to be sent successfully before the results can be returned. This has been proven in practice that sometimes sending emails cannot return results immediately, affecting the user experience.
So I sent the email through python, and PHP called it by calling the script, so that it would return immediately after successfully executing the script without having to judge whether the email was sent successfully. As long as the script file is successfully executed, a success flag is returned to the client. This greatly improves the email sending speed and ensures a good user experience.
However, when sending emails through python, I encountered the problem of garbled characters. The following phenomenon occurred during the debugging process:
1. The combination of Chinese and English letters causes garbled characters.
2. Two Chinese characters for the name of the person who replied to the email are normal, but three Chinese characters are garbled. This problem is very hidden. I only discovered this problem today, which caused me to make the same mistake twice in front of my boss. Because my test was OK (my name is two characters), but I didn’t test three characters, and I didn’t expect that the problem would arise here.
3. The email subject is garbled
4. Everything is normal, but when you click "Reply" on the email, some of the content that appears is garbled.
5. After the content problem was solved, I found that the name in the reply was also garbled. Moreover, QQ mailbox is normal, foxmail is normal, 163 is normal, and gmail is normal, but outlook is garbled.
Calling environment:
1. I use the reply person, reply email, sending email, file name, etc. as parameters of the script in PHP, and call the cmd command for convenient execution. As parameters, some characters are special characters. For example, issues such as ampersand, single quotation marks, double quotation marks, etc. Another problem is that there cannot be spaces between each parameter. If there are spaces, the order of parameters is disrupted.
In short, the problem of garbled characters cannot be perfectly solved. In the end, there was no other way, so I adopted the following method to finally solve the garbled code problem.
In PHP, write the content of the sent email, such as subject, reply name, email, content, etc., into the configuration file. The name of this configuration file is random, and the file directory is in the temporary directory of PHP. Ensure multi-person use. Then pass the configuration file name (including the path) when calling the python script in PHP, and process it by reading the configuration file in python. In this case, the topic and reply person, that is, the part involving Chinese characters, are garbled in 163 (the content part has not been tested at present. It has been determined that the topic and reply person involving Chinese characters are garbled in the 163 mailbox, but there are no garbled characters in the QQ mailbox , everything is normal), the solution is to convert it to utf8 through Header("xxxx", "utf-8") and everything is normal.
Share the relevant code below:
PHP calls python script
//Generate ini configuration file
$sampleData = array(
'mail' => array(
'subject' =>'Hello, dear, your friend sent you an email - forwarded by xxx Co., Ltd.',
'ReplyToName' => ;$send_name,
'ReplyToMail' =>$send_email,
'To' =>$receive_email,
'file_name' =>realpath($target_path),
)
);
$filename=getUnique().'.ini';
write_ini_file($sampleData,'D:/PHP/Php/tmp/'.$filename, true);
$cmd=' start mmail.py '.$filename;
$r=exec($cmd,$out,$status);
if(!$status)
echo 'ok'
else
echo 'fail'
python send email script
# -*- coding: utf-8 -*-
import smtplib
import email.MIMEMultipart# import MIMEMultipart
import email.MIMEText# import MIMEText
import email.MIMEBase# import MIMEBase
import os.path
import sys
from email.header import Header
import mimetypes
import email.MIMEImage# import MIMEImage
import ConfigParser
import string
inifile=u'D:/PHP/Php/tmp/' + sys.argv[1]
config=ConfigParser.ConfigParser()
config.read(inifile)
os.remove(inifile)
subject=Header(config.get("mail","subject"),"utf-8")
ReplyToName=config.get("mail","ReplyToName")
ReplyToMail=config.get("mail","ReplyToMail")
To=config.get("mail","To")
file_name=config.get("mail","file_name")
From = "%s
server = smtplib.SMTP("smtp.exmail.qq.com",25)
server.login("xxxx_business@5186.me","itop202") #仅smtp服务器需要验证时
# 构造MIMEMultipart对象做为根容器
main_msg = email.MIMEMultipart.MIMEMultipart()
# 构造MIMEText对象做为邮件显示内容并附加到根容器
text_msg = email.MIMEText.MIMEText("xxx帮你转发的邮件",_charset="utf-8")
main_msg.attach(text_msg)
# 构造MIMEBase对象做为文件附件内容并附加到根容器
ctype,encoding = mimetypes.guess_type(file_name)
if ctype is None or encoding is not None:
ctype='application/octet-stream'
maintype,subtype = ctype.split('/',1)
file_msg=email.MIMEImage.MIMEImage(open(file_name,'rb').read(),subtype)
## 设置附件头
basename = os.path.basename(file_name)
file_msg.add_header('Content-Disposition','attachment', filename = basename)#修改邮件头
main_msg.attach(file_msg)
# 设置根容器属性
main_msg['From'] = From
if ReplyToMail!='none':
main_msg['Reply-to'] = "%s<%s>" % (Header(ReplyToName,"utf-8"),ReplyToMail)
#main_msg['To'] = To
main_msg['Subject'] = subject
main_msg['Date'] = email.Utils.formatdate()
#main_msg['Bcc'] = To
# 得到格式化后的完整文本
fullText = main_msg.as_string()
# 用smtp发送邮件
try:
server.sendmail(From, To.split(';'), fullText)
finally:
server.quit()
os.remove(file_name)
发送纯文本
text_msg = email.MIMEText.MIMEText("xxxx帮你转发的邮件",_charset="utf-8")
main_msg.attach(text_msg)
或者
content=config.get("mail","content")
content=Header(content,"utf-8")#如果加上这一句,邮件发不出去。其实下面这句已经对内容进行了编码处理。这一句就不要了。
text_msg = email.MIMEText.MIMEText(content,_charset="utf-8")
main_msg.attach(text_msg)
因此,对于主题、回复人涉及汉字的,要用Header("xxxx","utf-8")方式进行编码转换。至于内容,就不要用Header("xxxx","utf-8")重复转换了,否则会出现错误。

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

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

It is impossible to complete XML to PDF conversion directly on your phone with a single application. It is necessary to use cloud services, which can be achieved through two steps: 1. Convert XML to PDF in the cloud, 2. Access or download the converted PDF file on the mobile phone.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

To generate images through XML, you need to use graph libraries (such as Pillow and JFreeChart) as bridges to generate images based on metadata (size, color) in XML. The key to controlling the size of the image is to adjust the values of the <width> and <height> tags in XML. However, in practical applications, the complexity of XML structure, the fineness of graph drawing, the speed of image generation and memory consumption, and the selection of image formats all have an impact on the generated image size. Therefore, it is necessary to have a deep understanding of XML structure, proficient in the graphics library, and consider factors such as optimization algorithms and image format selection.

Use most text editors to open XML files; if you need a more intuitive tree display, you can use an XML editor, such as Oxygen XML Editor or XMLSpy; if you process XML data in a program, you need to use a programming language (such as Python) and XML libraries (such as xml.etree.ElementTree) to parse.

XML can be converted to images by using an XSLT converter or image library. XSLT Converter: Use an XSLT processor and stylesheet to convert XML to images. Image Library: Use libraries such as PIL or ImageMagick to create images from XML data, such as drawing shapes and text.

XML formatting tools can type code according to rules to improve readability and understanding. When selecting a tool, pay attention to customization capabilities, handling of special circumstances, performance and ease of use. Commonly used tool types include online tools, IDE plug-ins, and command-line tools.
