ENV: TS 6.7.2 SP2, Win2K3I have a very bizarre event happening with my workflow-generated emails. The email's 'Sent' time stamp does not match the actual date/time. For example, my email was actually sent on Tues 6/23/2010 2:44 PM, however the 'Sent' time stamp on the email is Wed 1/6/2010 10:24 AM. What's also weird is that it's always the same exact date! Just a slightly different time. It only happens with emails initiated by TeamSite. Can this be hard coded anywhere?Has anyone ever seen this issue? TIA
You'd have to look at what the emails are doing with regard to setting a date in the email headers. It does seem strange that it's using 1/6/2010 (since that's not epoch date) - but chances are you just need to make sure you properly set the date in the email headers.
Is your email connecting directly to your email server, or to an SMTP server on the box that TeamSite is installled? If it's going to an SMTP server on the TeamSite box before going out, check the settings there. The 5 hour thing looks to be a timezone issue.Try sending an email from the server and see what the sent date time looks like.[PHP]use strict;use Mail::Mailer;my $mailerObject = new Mail::Mailer('smtp', Server => 'emailserver.blah.com');$mailerObject->open( { 'From' => 'blah@blah.com', 'To' => 'blah@blah.com', 'Subject' => 'hello' });[/PHP]
No we're going directly to the mail server. I keep thinking this is script related somehow, since email from any other source is fine.