php - how to send emails when there is new events created.? -
i need suggestions sending email content editors of project(i.e, admin admins).
first let me explain project..
my project events(fests) occurred in on country.
here when user submitted new events details database, approval mail send content editors of project. if content editor accept details events published in website.
here main problem have more 10 content editors. so, how can send event approval mails content editors..
i know there mail package in php , used sending mail 1 person only.
can use package in project..? or there other solutions available problem.?
thank you.
why not add everyone's email to field of php mail command
$subject = "changes"; $message = "some email message"; mail('user1@example.com,user2@example.com,user3@example.com', $subject, $message);
Comments
Post a Comment