Use PHP to send emails. A script that sends a E-MAIL may be one of the most common scripts you can find on the Web site, although it is very simple, a Mail script can sometimes make programmers very frustrated. A script for sending E-MAIL in PHP may be one of the most common scripts you can find on the Web site, although it is very simple, a Mail script can sometimes make programmers very frustrated. in PHP, there is a function called mail (). it only needs to know the recipient's address and the sender of the email to send the email, but requires mail () you still need to solve some difficult problems to run as you want.
To enable mail () to run, you must have an SMTP server so that PHP can connect to it. no matter how important the server is to the Mail program, most people do not have a single star concept about how it operates. in this tutorial, we will reveal SMTP secrets and solve some common problems of sending emails using PHP. another topic in this article will include the method of traversing an address list cyclically and sending an email to the recipient in both text and HTML formats.
SMTP is short for Simple Mail Transfer Protocol, and an SMTP server is a computer that runs this Protocol and sends emails. running this protocol actually means running programs such as Sendmail and Qmail-if you are using a non-Windows computer. on the Windows platform, as part of the Windows NT Service Pack or the SMTP Service program built in Windows 2000 is a typical program.
I'm not saying that SMTP packages only have those, but they are the most common. if your Web site uses part of the Internet Service Provider's virtual hosting package, the SMTP Service program should have been installed on this computer. if you are a system administrator of an ISP or indoor computer, you may have installed some SMTP software on this computer to process emails sent from the Web server.
However, if you are a personal user and only one developer Web service is running on your PC, you may not have run the SMTP software on your machine. the following is a simple but accurate law of thumb: If you are a Windows user and never see the word "SMTP server", then you have not run this program. if you do not have one, you have two options: install, configure, and maintain an SMTP Service program. (if you do not know what it is, you are not recommended to use this method) or use an existing SMTP server.
One of the most common scripts found on the Ghost site, although it is very simple, an email script may sometimes make programmers very frustrated. there is one in PHP...