PHP: how to send email basics

前端 未结 7 1176
滥情空心
滥情空心 2021-01-28 18:05

I\'m would like to use PHP to send email from my localhost to other people. What do I need to do that?

For example do I need to install mailserver? If I\'m not mistaken

相关标签:
7条回答
  • 2021-01-28 18:52

    mail("recipient@domain.com", "Subject", "This is an email!");

    You just need to install some email server. If you are on linux, you can try exim, if you are on windows, you can use the SMTP server that comes with IIS.

    0 讨论(0)
提交回复
热议问题