1. 程式人生 > 資料庫 >關於SQL資料庫 msdb.dbo.sp_send_dbmail 函式傳送郵件的場景分析

關於SQL資料庫 msdb.dbo.sp_send_dbmail 函式傳送郵件的場景分析

在推行系統中,時不時會有使用者提出希望系統能自動推送郵件,由於手頭的工具和能力有限,不少需求都藉助於sql server的郵件觸發來實現。

步驟:

1、配置郵箱。步驟略,網上有不少帖子說明,手工直接在管理-資料庫郵件配置即可。配置完成後可以右鍵測試郵箱是否正常工作。

2、製作傳送郵件指令碼

3、sql server 代理定義週期計劃

郵件指令碼編寫:

場景一:業務部門希望可以每週提供一次樣品庫存,即將sql查詢的結果以附件的方式發給指定的人員。

 EXEC msdb.dbo.sp_send_dbmail
   @profile_name = '<賬戶名>',--定義好的sql server 郵箱賬戶名
   @recipients = '<mail account>',--需要傳送郵件的賬號,多個用;間隔,建議通過一個郵件組來管理需要傳送的地址
   @body = 'The stored procedure finished successfully.',-- 郵件正文
   @subject = '樣品倉物料清單',--郵件抬頭
   @execute_query_database = 'UFDATA_001_2016',--查詢的資料庫 
   --需要執行的查詢
   @query = 'select
           distinct substring(cinvcode,4,100) 料號
           from
           CurrentStock
           where
           cwhcode = 12
           and iquantity >=1',@attach_query_result_as_file = 1,@query_attachment_filename = 'item.csv'

郵件傳送的結果

場景二,使用者系統在OA系統完成的外部使用者報備客戶審批完成後觸發郵件給對方。由於OA系統自動觸發外部郵件格式有顯示,據說需要js寫程式碼,因為不熟悉,所以還是藉助於sql server的郵件功能來實現。

預先寫一個view,三個欄位,需要傳送的郵箱,郵件主題,郵件內容。

例子中將主題和主體做為一個,用到迴圈語句實現。

declare @mail nvarchar(200);
 declare @note nvarchar(500); 
 declare c cursor --遊標
 for select email,note from cux_dls_notice_v where operatedate + ' '+ operatetime >= DATEADD(MINUTE,-60,GETDATE()) --取最近一小時的記錄傳送,計劃任務是60分鐘執行一次。 
 open c
 fetch next from c into @mail,@note; 
 while @@FETCH_STATUS = 0
 begin
 EXEC msdb.dbo.sp_send_dbmail
 @profile_name= '<賬戶名>',--定義好的sql server 郵箱賬戶名
 @recipients=@mail,--需要傳送的郵箱
 @subject=@note,--郵件標題
 @body=@note --郵件主題
 fetch next from c into @mail,@note;
 end
 close c;
 deallocate c;

場景三,還是在OA系統裡,銷售申請特價之後提交審批,審批人系統可以收到郵件通知,並在郵件中和銷售討論後,再回到系統中審批。由於申請表的內容多,需要用html的傳送格式。

做法和場景二類似,重點是郵件主題需要生成為html的格式。

還是一樣把需要展現的內容做成一個view,我個人喜歡做view,這樣有什麼變化調整view就可以了。

/*宣告變數*/
declare @tableHTML varchar(max)
declare @mail nvarchar(200);
declare @note nvarchar(500);
--設定問候詞
set @tableHTML = '<html><body><table><tr><td><p><font color="#000080" size="3" face="Verdana">您好!</font></p><p style="margin-left:30px;"><font size="3" face="Verdana">請審批下面的價格申請:</font></p></td></tr>';
--設定表頭
set @tableHTML=@tableHTML
+'<tr><td><table border="1" style="border:1px solid #d5d5d5;border-collapse:collapse;border-spacing:0;margin-left:30px;margin-top:20px;"><tr style="height:25px;background-color: rgb(219,240,251);">
<th style="width:100px;">RFQ No</th>
<th style="width:200px;">sales</th>
<th style="width:60px;">PL3</th>
<th style="width:80px;">Customer</th>
<th style="width:100px;">disty_name</th>
<th style="width:60px;">2nd disty</th>
<th style="width:80px;">Sold To Customer</th>
<th style="width:80px;">Part No</th>
<th style="width:100px;">Currency</th>
<th style="width:60px;">Volume</th>
<th style="width:100px;">Requested DC</th>
<th style="width:100px;">Customer RP</th>
<th style="width:100px;">Competitor</th>
<th style="width:100px;">Competitor PN</th>
<th style="width:80px;">Competitor Price</th></tr>';
--啟用遊標
declare c cursor for
--查詢結果
select
a.email,a.note,@tableHTML+'<tr><td align="center">'+rfq_quotation_number+'</td>'
+'<td align="center">'+lastname+'</td>'
+'<td align="center">'+pl3+'</td>'
+'<td align="center">'+customer+'</td>'
+'<td align="center">'+disty_name+'</td>'
+'<td align="center">'+snd_disty+'</td>'
+'<td align="center">'+sold_to_customer+'</td>'
+'<td align="center">'+fully_part_no+'</td>'
+'<td align="center">'+currency+'</td>'
+'<td align="center">'+volume+'</td>'
+'<td align="center">'+requested_disty_cost+'</td>'
+'<td align="center">'+cust_requested_price+'</td>'
+'<td align="center">'+competitor+'</td>'
+'<td align="center">'+competitor_part_no+'</td>'
+'<td align="center">'+Competitor_Price+'</td></tr>'
from
(
select 
email,note,rfq_quotation_number,lastname,pl3,客戶中文+'/'+客戶英文 as customer,disty_name,snd_disty,sold_to_customer,fully_part_no,currency,isnull(cast(volume as nvarchar(10)),'') volume,isnull(cast(requested_disty_cost as varchar(10)),'') requested_disty_cost,isnull(cast(cust_requested_price as varchar(10)),'') as cust_requested_price,isnull(cast(competitor as varchar(100)),'') competitor,isnull(cast(competitor_part_no as varchar(50)),'') competitor_part_no,isnull(cast(competitor_price as varchar(10)),'') competitor_price
from cux_rfq_v 
where currentnodetype = 1 and lastoperatedate + ' '+ lastoperatetime >= DATEADD(MINUTE,GETDATE())  --找最近60分的記錄,併發送
) a
open c
fetch next from c into 
@mail,@note,@tableHTML;
while @@FETCH_STATUS = 0
begin
EXEC msdb.dbo.sp_send_dbmail
@profile_name= '<賬戶名>',--定義好的sql server 郵箱賬戶名,@recipients=@mail,@subject=@note,@body= @tableHTML,@body_format='HTML'
fetch next from c into 
@mail,@tableHTML;
end
close c;
deallocate c;


總結

以上所述是小編給大家介紹的關於SQL資料庫 msdb.dbo.sp_send_dbmail 函式傳送郵件的場景分析,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對我們網站的支援!