Hello, welcome to therichpost.com. In this post, I will tell you How to send mail in codeigniter on localhost server? Today I was working with codeigniter and there is email feature but that need to work on localhost but I stuck at that point. After some time i got the solution and today I will share that code with you. First I tell you codeigniter is great MVC framework and I like it very much. Here you can check the code for send email from localhost server. First you need you make an account on mailtrap.io and after making an account you will get username and password for smtp settings and you need to add that settings in your site. After done with all you will get emails on your mailtrap.io account and this is very cool. Here is working code and you need to add this your codeigniter’s config.php file:
$config['email'] = Array( 'protocol' => 'smtp', 'smtp_host' => 'smtp.mailtrap.io', 'smtp_port' => 2525, 'smtp_user' => 'eeeeeeeeeeeeee', 'smtp_pass' => 'eeeeeeeeeeeeee', 'crlf' => "\r\n", 'newline' => "\r\n" );
There are so many code in codeigniter and i will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com
Recent Comments