search
HomeBackend DevelopmentPHP TutorialDecoding POP3 emails using PHP - PHP tutorial
Decoding POP3 emails using PHP - PHP tutorialJul 13, 2016 pm 05:26 PM
phppop3oneauthoraccomplishSource Fileuseofdecodingmail

A preliminary understanding of the source files of emails (Author: Chen Junqing, October 24, 2000 15:08) This article briefly explains the principles of receiving emails through the POP3 protocol and decoding MIME emails; for receiving and MIME decoding, two practical PHP are provided class, and provides examples of usage. It is divided into two parts: mail collection and MIME decoding. We have already introduced you to the collection of emails, now let us introduce you to the decoding part of this article. In the previous article, we have completed an example of using PHP to receive emails through POP3. However, when using this class, I believe you have seen that many emails received are a bunch of garbled characters that you cannot understand at all! Yes. Most of today's emails have been encoded and require a decoding process before they can be turned into the text, pictures, or other attachments we are used to. The source file of the email. First, let’s take a look at the source file of a simple email: (In Foxmail, select the email and click “View Source File” to see something like this) From: To: Subject: =?gb2312?B?xOO6w6Oh?= Date: Sun, 8 Oct 2000 20:28:45 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C03166. 5B1E9510" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 ----=_NextPart_000_0007_01C03166.5B1E9510  Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64  w7vT0MLSwuuwyaO/DQo=   ------=_NextPart_000_0007_01C0316 6.5B1E9510  Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv 0idGV4dC9odG1sOyBjaGFyc2V0PWdi  MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w  MC4yOTIwLjAiIG5hbWU9R0VORVJBVE9SPg 0KPFNUWUxFPjwvU1RZTEU+DQo8L0hFQUQ+DQo8Qk9E  WSBiZ0NvbG9yPSNmZmZmZmY+DQo8RElWPjxGT05UIHNpemU9Mj7Du9PQwtLC67DJo788L0ZPTlQ+  PC9ESVY+PC9CT0RZPjw vSFRNTD4NCg==  ------=_NextPart_000_0007_01C03166.5B1E9510-   I don’t think anyone has such an email Can understand. Don't worry, let's take a closer look at these contents. From: To: This is easy to understand. The email is sent by boy@netease.com and the recipient is boss_ch@china.com. We can basically understand the meaning of these tags literally, like Date :Sun, 8 Oct 2000 20:28:45 +0800 represents the time, X-Priority: 3 represents the priority of the email, X-Mailer: Microsoft Outlook Express 5.00.2919.6700 represents the name of the email sender, Outlook 5 is used here, but these things have little to do with the content of the email. We don’t need to delve into it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/531927.htmlTechArticleInitial understanding of the source file of the email (Author: Chen Junqing, October 24, 2000 15:08) This article briefly explains The principle of receiving emails and decoding MIME emails through the POP3 protocol; for receiving and MI...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

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

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

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.