Active
Project:
Views Mail
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Jan 2010 at 09:27 UTC
Updated:
19 Jan 2010 at 09:27 UTC
$date = date("F j, Y, g:i a", $sent);
$log = 'Mailing scheduled for processing on <strong>'.$date.'</strong>. <br>Subject: '.$subject.'<br>Count: '.$count.' recipients. <br>VMID: <strong>'. $vmid .'</strong>.';
Instead of this, i'd propose using this:
$log = 'Mailing scheduled for processing on <strong>'.format_date($sent).'</strong>. <br>Subject: '.$subject.'<br>Count: '.$count.' recipients. <br>VMID: <strong>'. $vmid .'</strong>.';
Otherwise because of the timezone settings, users maybe see weird dates!