How to send email via Codeigniter? I'm using NameCheap's Open-Xchange server.. |
[eluser]XMadMax[/eluser]
Hey alcatraz, you must to define email.php in the config file, with smtp protocolo, port user and password used to connect your remote mail server. http://ellislab.com/codeigniter/user-gui...email.html Example of email.php file ussing google account: $config['protocol'] = 'smtp'; $config['smtp_host'] = 'ssl://smtp.googlemail.com'; $config['smtp_port'] = '465'; $config['smtp_timeout'] = '10'; $config['smtp_user'] = '[email protected]'; $config['smtp_pass'] = 'mygooglepassword'; |
Messages In This Thread |
How to send email via Codeigniter? I'm using NameCheap's Open-Xchange server.. - by El Forum - 04-12-2013, 09:15 PM
How to send email via Codeigniter? I'm using NameCheap's Open-Xchange server.. - by El Forum - 04-15-2013, 01:48 AM
|