Many friends are worried about the MAIL function in PHP. The key is the SMTP service. Most of the commonly used 163 and sina currently do not support anonymous email sending. that is to say, even if you set smtp in php. ini to smtp.163.net/smtp.sina.com.cn, an error is returned. What should we do? Today we have Syntax.
Many friends are worried about the MAIL function in PHP. The key is the SMTP service. Most of the commonly used 163 and sina currently do not support anonymous email sending. that is to say, even if you set smtp in php. ini to smtp.163.net/smtp.sina.com.cn, an error is returned. What should we do? Today, I got an email service software called IMAIL. I tried it and succeeded. The method is described as follows: 1. install IMAIL. By default, if your machine name is server, its smtp service name is also server. 2. check whether the imail smtp server is up in "control panel"-"service. 3. modify php. ini. Test smtp = server 4. "; $ Subject =" test using IMAIL to send an email "; $ message =" HTML-format mail. do you want to know the original program? "; $ Extra =" From: yukuang@163.netContent-Type: text/html; charset = gb2313Content-Transfer-Encoding: 8bit "; echo" Sending mail... "; mail (" yourmail ", $ subject, $ message, $ extra); echo" ";?>