Hi all,
What is the base different to the flow below
first
Second
what is base different and which is the best method to send bulk mail
What is the base different to the flow below
first
Code:
$headers .="cc: [email]1@one.com,2@one.com,3@one.com[/email]"; mail($recipient, $subject, $adminmsg, $headers."\r\n");
Code:
foreach($mailids as $mailid)
{
$recipient="$maild";
mail($recipient, $subject, $adminmsg, $headers."\r\n");
}
Comment