How to send an email in PHP reliably?

前端 未结 4 1584
闹比i
闹比i 2021-01-24 11:07

i am learning how to send an email.i have installed appserver and in files php.ini-dist and php.ini-recommended i did the following changes

SMTP=localhost

send         


        
4条回答
  •  星月不相逢
    2021-01-24 11:41

    As jhominal points out, the php.ini files you've modified are just examples. You'll have to find out where the php.ini is for your distribution and modify it.

    As mentioned by others, you can set a custom from header. However, if you don't set sendmail_from in php.ini you'll have to remember to always set it.

    At any rate, here is a pretty good article/tutorial on sending email with PHP's mail() function:

    http://articles.sitepoint.com/article/advanced-email-php

提交回复
热议问题