Skip to content

Instantly share code, notes, and snippets.

@stnight
Created January 24, 2016 23:20
Show Gist options
  • Save stnight/9ef1156a21edcea317d6 to your computer and use it in GitHub Desktop.
Save stnight/9ef1156a21edcea317d6 to your computer and use it in GitHub Desktop.
This will be added under config directory
<?php
$config['protocol'] = "smtp";
$config['smtp_crypto'] = 'ssl';
$config['smtp_host'] = "smtp.gmail.com";
$config['smtp_port'] = 465;
$config['smtp_user'] = "cictpracticum2015@gmail.com";
$config['smtp_pass'] = "bpsucict2016";
$config['mailtype'] = "text";
$config['charset'] = "iso-8859-1";
$config['send_multipart'] = FALSE;
$config['wordwrap'] = TRUE;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment