How to send bulk emails using PHP(Codeigniter)? -
kindly tell me way of sending multiple emails using php codeigniter.
never use own server bulk email, if using vps, provider may have spam filter , end email pnalities, if not vps host, client may flag emails spam read more anti spam here
solution
use third party email service api instead example mailshimp , can alot free acount , give free key , you're use api https://apidocs.mailchimp.com/api/example-code/
example: let's api keys kisaragi2015
$key = "kisaragi2015"
and have preprepared campaign on mailshimp id = 123
$cid = 123
you send
send($key, $cid) ;
that's it, please see doc more details
https://mandrillapp.com/api/docs/
there other email service that's choose 1 fits needs best
hope helps !
Comments
Post a Comment