Welcome Guest, Not a member yet? Register   Sign In
Email shows date in the past?
#1

[eluser]vanquish[/eluser]
I am using the CodeIgniter Email Class to send emails to myself and to customers.

However, there is a very strange problem which is causing a lot of confusion for us. The emails are being timestamped with the wrong date, which causes them to display out of order in the client's inbox.

For example, I just sent an email today, August 24 at 1:48pm MST. Our server is running on PST (only 1 hour west of us). I checked my inbox and the email was time stamped as August 23, 6:41pm MST.

I cannot find any documentation relating to this issue. Does anyone have any clue as to what would be the reason for this strange bug??

Here is the basic code:
Code:
$this->load->library('email');

$config['charset'] = 'iso-8859-1';
$config['mailtype'] = 'html';

$this->email->initialize($config);

$this->email->from('[email protected]', 'Company Name');
$this->email->to($_SESSION['user_email']);

$this->email->subject('Some info for you');
$this->email->message($this->load->view('customer_email_view', $data, TRUE));    

$this->email->send();


Messages In This Thread
Email shows date in the past? - by El Forum - 08-24-2010, 01:53 AM
Email shows date in the past? - by El Forum - 08-24-2010, 02:05 AM
Email shows date in the past? - by El Forum - 08-24-2010, 02:10 AM
Email shows date in the past? - by El Forum - 08-24-2010, 02:18 AM
Email shows date in the past? - by El Forum - 08-24-2010, 02:19 AM
Email shows date in the past? - by El Forum - 08-24-2010, 03:00 AM
Email shows date in the past? - by El Forum - 08-24-2010, 03:23 AM
Email shows date in the past? - by El Forum - 08-24-2010, 03:34 AM
Email shows date in the past? - by El Forum - 08-24-2010, 06:42 PM
Email shows date in the past? - by El Forum - 08-24-2010, 07:10 PM
Email shows date in the past? - by El Forum - 08-24-2010, 11:38 PM
Email shows date in the past? - by El Forum - 08-25-2010, 02:28 PM
Email shows date in the past? - by El Forum - 08-25-2010, 03:08 PM



Theme © iAndrew 2016 - Forum software by © MyBB