From f2d3ff3424c858bf8147a783ef8144e5a5765486 Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Wed, 18 Jul 2012 13:39:43 +0200 Subject: [PATCH] Fixed issue #6266: Email protocol defaults to sendmail --- application/config/email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/config/email.php b/application/config/email.php index 0b1da80c001..2d856c88a63 100644 --- a/application/config/email.php +++ b/application/config/email.php @@ -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