Sending multiple email from codeigniter -


hi friends creating newsletter in codeigniter. there way send multiple email ci email lib or should use third party ?

using email class, like:

foreach ($list $name => $address) {     $this->email->clear();      $this->email->to($address);     $this->email->from('your@example.com');     $this->email->subject('here info '.$name);     $this->email->message('hi '.$name.' here info requested.');     $this->email->send(); } 

would work. (straight docs). depends on how many addresses have, , constraints such server/mail queue processing/script time out etc

i'm not aware of 3rd party ci newsletter plugin/library haven't looked hard.


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -