如何:檢查使用 Database Mail 傳送的電子郵件訊息的狀態 (Transact-SQL)

Database Mail 會保留外寄電子郵件訊息的副本,並在 msdb 資料庫的 sysmail_allitemssysmail_sentitemssysmail_unsentitemssysmail_faileditems 檢視中顯示它們。Database Mail 外部程式會記錄活動,並透過「Windows 應用程式事件記錄檔」和 msdb 資料庫中的 sysmail_event_log 檢視來顯示記錄檔。若要檢查電子郵件訊息的狀態,請對此檢視執行查詢。電子郵件訊息狀態可為下列四種之一:「已傳送」「未傳送」「正在重試」「失敗」

若要檢查電子郵件訊息的狀態

  1. sysmail_allitems 資料表進行選取,按照 mailitem_idsent_status 指定所需的訊息。

  2. 若要檢查外部程式為電子郵件訊息所傳回的狀態,請將 sysmail_allitems 聯結到 sysmail_event_log 檢視的 mailitem_id 資料行,如下節所示。

[!附註]

依預設,外部程式不會記錄已成功傳送的訊息之相關資訊。若要記錄所有訊息,請使用 [Database Mail 組態精靈][設定系統參數] 頁面,將記錄層級設為詳細資訊。

範例

以下範例列出任何外部程式無法順利傳送而傳送至 danw 的電子郵件訊息相關資訊。此陳述式會列出外部程式無法傳送之訊息的主旨、日期和時間,以及 Database Mail 紀錄檔中的錯誤訊息。

USE msdb ;
GO

-- Show the subject, the time that the mail item row was last
-- modified, and the log information.
-- Join sysmail_faileditems to sysmail_event_log 
-- on the mailitem_id column.
-- In the WHERE clause list items where danw was in the recipients,
-- copy_recipients, or blind_copy_recipients.
-- These are the items that would have been sent
-- to danw.

SELECT items.subject,
    items.last_mod_date
    ,l.description FROM dbo.sysmail_faileditems as items
INNER JOIN dbo.sysmail_event_log AS l
    ON items.mailitem_id = l.mailitem_id
WHERE items.recipients LIKE '%danw%'  
    OR items.copy_recipients LIKE '%danw%' 
    OR items.blind_copy_recipients LIKE '%danw%'
GO