PHP form send email to multiple recipients

后端 未结 7 1924
無奈伤痛
無奈伤痛 2020-11-27 05:18

I have some PHP code that I\'m using to send a form off to a specific e-mail address. However, I\'d like to include a couple more e-mail addresses in the PHP for when it sen

7条回答
  •  抹茶落季
    2020-11-27 05:40

    If i understood correct try this one

    $headers = "Bcc: someone@domain.com";
    

    or

    $headers = "Cc: someone@domain.com";
    

提交回复
热议问题