Home  >  Article  >  Backend Development  >  Mail sending program based on mail service software IMAIL under NT - local version_PHP tutorial

Mail sending program based on mail service software IMAIL under NT - local version_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:26:47994browse

Many friends are worried about PHP's MAIL function. In fact, the key is its SMTP service problem. Most of the currently used 163, sina, etc. do not support anonymous sending of emails, which means that even if you set the smtp in php.ini to smtp.163.net/smtp.sina.com.cn, an error will be prompted. What to do? Today I got an email service software called IMAIL. I gave it a try and it actually worked. The method is explained as follows: 1. Install IMAIL. According to the default installation, generally if the name of your machine is server, then its SMTP service name is also server. 2. Check "Control Panel" - "Services" to see if the IMAIL SMTP SERVER is up. 3. Modify php.ini. Set smtp= server 4. Test it.

"; $subject = "Test sending email using IMAIL"; $message = "Mail sending program based on mail service software IMAIL under NT - local version_PHP tutorialHTML format email, want to know the original program? "; $extra="From:yukuang@163.net Content-Type:text/html;charset=gb2313 Content-Transfer-Encoding:8bit"; echo "Sending mail..."; mail ("yourmail", $subject, $message, $extra); echo "
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