Page 1 of 1

About email time

Posted: Mon Feb 16, 2009 2:46 am
by vikasphp
hi...i am using email functionality for mysite but want to use the server time instead of local time for send email time and inbox ...
how can i achieve this ?????

thanks

Re: About email time

Posted: Mon Feb 16, 2009 7:16 pm
by Chris Corbyn
This should already happen, but you can do it explicitly with an additional header:

Code: Select all

$headers .= "Date: " . date('r') . "\r\n";