Skip to content

Commit

Permalink
Fixed issue #6266: Email protocol defaults to sendmail
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jul 18, 2012
1 parent bc1a864 commit f2d3ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/config/email.php
Expand Up @@ -29,7 +29,7 @@
$config['siteadminbounce'] = 'your-email@example.net'; // The default email address used for error notification of sent messages for the site administrator (Return-Path)
$config['siteadminname'] = 'Your Name'; // The name of the site administrator

$config['emailmethod'] = 'sendmail'; // The following values can be used:
$config['emailmethod'] = 'mail'; // The following values can be used:
$config['protocol'] = $config['emailmethod'];
// mail - use internal PHP Mailer
// sendmail - use Sendmail Mailer
Expand Down

0 comments on commit f2d3ff3

Please sign in to comment.