![]() |
email custom header? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: email custom header? (/showthread.php?tid=54234) |
email custom header? - El Forum - 08-29-2012 [eluser]Unknown[/eluser] Hello, I need to set custom header ("Precedence: bulk") for emails I'm sending, how can I do it in Codeigniter? The Email Preferences section of User Guide says nothing about headers. Thanks. email custom header? - El Forum - 08-29-2012 [eluser]CroNiX[/eluser] It's a basic email class. You'd have to just use PHP's native mail() function or something else to set headers. email custom header? - El Forum - 08-29-2012 [eluser]Aken[/eluser] Or extend the class and add it somewhere, either in its own method or inside an already existing one if you need it every time you send an email. email custom header? - El Forum - 08-29-2012 [eluser]Unknown[/eluser] I will try some of that stuff, thank you guys. |