檢查使用 Database Mail 傳送之電子郵件訊息的狀態
適用於:SQL Server Azure SQL 受控執行個體
本主題描述如何在 SQL Server 中使用 Transact-SQL,來檢查透過 Database Mail 傳送之電子郵件訊息的狀態。
開始之前:
若要檢視使用 Database Mail 傳送之電子郵件的狀態,請使用:Transact-SQL
開始之前
Database Mail 會保留外寄電子郵件訊息的副本,並在 msdb資料庫的 sysmail_allitems、 sysmail_sentitems、 sysmail_unsentitems 、 sysmail_faileditems 檢視中顯示它們。 Database Mail 外部程式會記錄活動,並透過「Windows 應用程式事件記錄檔」和 msdb 資料庫中的 sysmail_event_log 檢視來顯示記錄檔。 若要檢查電子郵件訊息的狀態,請對此檢視執行查詢。 電子郵件訊息狀態可為下列四種之一: 「已傳送」、 「未傳送」、 「正在重試」及 「失敗」。
使用 TRANSACT-SQL
若要檢視使用 Database Mail 傳送之電子郵件的狀態
從 sysmail_allitems 資料表進行選取,按照 mailitem_id 或 sent_status指定所需的訊息。
若要檢查外部程式為電子郵件訊息所傳回的狀態,請將 sysmail_allitems 聯結到 sysmail_event_log 檢視的 mailitem_id 資料行,如下節所示。
依預設,外部程式不會記錄已成功傳送的訊息之相關資訊。 若要記錄所有訊息,請使用 [Database Mail 組態精靈] 的 [設定系統參數]頁面,將記錄層級設為詳細資訊。
範例 (Transact-SQL)
以下範例列出任何外部程式無法順利傳送而傳送至 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