SQL Server sp_send_dbmail - 如何向Gmail发送邮件?

时间:2015-05-29 12:37:32

标签: sql-server sp-send-dbmail

我正在使用sp_send_dbmail,除非我使用Gmail帐户发送给收件人,否则效果非常好。数据库邮件日志提供以下错误:

Error,80,The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 2 (2015-05-29T13:22:39). Exception Message: Cannot send mails to mail server. (Unable to send to a recipient.))

所有未使用Gmail的收件人都会正确收到邮件。

当我手动使用Outlook向此Gmail帐户发送邮件时,它正常运行。收件人正确收到邮件。 SQL Server邮件帐户未使用Gmail。我使用端口25和SSL(我试过没有SSL,它也没有工作)。

以下是程序调用:

EXEC msdb.dbo.sp_send_dbmail 
    @recipients = 'somemail@company.com;somemail@gmail.com',
    @copy_recipients = 'somemail@company.com',
    @profile_name = 'my_profile',
    @subject = 'mail subject',
    @body = 'some content',
    @body_format = 'Text';

1 个答案:

答案 0 :(得分:1)

我测试了SSMS中的sp_send_dbmail proc,它适用于gmail。在消息面板上,我收到消息'邮件排队'。 您可能无法使用以下方式排队: msdb..sysmail_help_queue_sp @queue_type = 'Mail' ;

对我来说,它看起来像smtp邮件中继问题。您还应该测试DB邮件配置文件设置。