How many multiple email addresses in single email?
For Example:
$to = array(
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
// more emails
);
$email_to = implode(',', $to); // your email address
$email_subject = "Contact Form Message"; // email subject line
$thankyou = "thankyou.htm"; // thank you page
So, My questions is how many email addresses are attached in single mail? is there any limit?