0

I have an sql jobs that send out notifications using gmail and noticed that the timestamp on the received date of an email in gmail, itself, is closer to the send_request_date field for that email in sql server rather than the actual sent_date field(25 minutes and in some cases 1 hour later).can anyone explain why?

4

1 回答 1

1

send_request_date指电子邮件被放入队列的时间

sent_date是电子邮件实际发送的时间

这意味着它可能是电子邮件服务器的问题,这会导致您的邮件发送有一定的延迟。

我不完全确定,因为我没有对这部分进行任何测试,但我假设当您的电子邮件被放入队列时,它的“发送日期”值将是它被放入队列的时间,而不是实际发送的时间。有人请纠正我这个问题。

此页面有一个链接可让您解决电子邮件问题:http ://social.msdn.microsoft.com/Forums/sqlserver/en-US/537d86d6-b878-4f00-ba5c-29c66f7d5b15/database-mail-sentdate-5-发送请求日期后几小时?forum=sqldatabaseengine

于 2013-10-14T13:30:52.337 回答