PHP发送多少多个电子邮件地址


PHP send how many multiple email addresses?

一封电子邮件中有多少个多个电子邮件地址?

例如:

$to = array(
  "test@gmail.com",
  "test1@gmail.com",
  "test2@gmail.com",
  "test3@gmail.com",
  "test4@gmail.com",
  "test5@gmail.com",
  // more emails
);
$email_to = implode(',', $to); // your email address
$email_subject = "Contact Form Message"; // email subject line
$thankyou = "thankyou.htm"; // thank you page

所以,我的问题是,一封邮件中有多少个电子邮件地址?有限制吗?

根据以下链接,您一次最多可以发送100个收件人。

https://help.1and1.com/e-mail-and-office-c37589/1and1-mail-basic-c37590/using-the-product-c85088/what-are-the-mass-mailing-limits-a594972.html

相关文章: