How many multiple email addresses in single email?
For Example:
$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
So, My questions is how many email addresses are attached in single mail? is there any limit?