How to send mail using PHP?

前端 未结 7 1529
谎友^
谎友^ 2020-11-30 15:00

I\'m using Windows Vista OS. PHP, MySQL as the database and Apache web server.

I want to send notification to those who want to join in my site. But the problem is w

7条回答
  •  失恋的感觉
    2020-11-30 15:31

    You have several options:

    • there's built in mail function, but it requires that some MTA is running on the machine, doesn't support authentication, and you'll need to work hard to send attachments
    • there's Pear Mail package, if you like to use Pear stuff
    • there's a good PHPMailer class which I used in past few years and it works really great. It like it because it is very simple and easy to include in your project (just a simple include call), yet powerful

提交回复
热议问题