欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

關(guān)于SQL數(shù)據(jù)庫 msdb.dbo.sp_send_dbmail 函數(shù)發(fā)送郵件的場景分析

 更新時間:2018年10月25日 14:27:34   作者:到鄉(xiāng)翻似爛柯人  
這篇文章主要介紹了關(guān)于SQL數(shù)據(jù)庫 msdb.dbo.sp_send_dbmail 函數(shù)發(fā)送郵件的場景分析,需要的朋友可以參考下

在推行系統(tǒng)中,時不時會有用戶提出希望系統(tǒng)能自動推送郵件,由于手頭的工具和能力有限,不少需求都借助于sql server的郵件觸發(fā)來實(shí)現(xiàn)。

步驟:

1、配置郵箱。步驟略,網(wǎng)上有不少帖子說明,手工直接在管理-數(shù)據(jù)庫郵件配置即可。配置完成后可以右鍵測試郵箱是否正常工作。

2、制作發(fā)送郵件腳本

3、sql server 代理定義周期計(jì)劃

郵件腳本編寫:

場景一:業(yè)務(wù)部門希望可以每周提供一次樣品庫存,即將sql查詢的結(jié)果以附件的方式發(fā)給指定的人員。

 EXEC msdb.dbo.sp_send_dbmail
   @profile_name = '<賬戶名>', --定義好的sql server 郵箱賬戶名
   @recipients = '<mail account>', --需要發(fā)送郵件的賬號,多個用;間隔,建議通過一個郵件組來管理需要發(fā)送的地址
   @body = 'The stored procedure finished successfully.',  -- 郵件正文
   @subject = '樣品倉物料清單',  --郵件抬頭
   @execute_query_database = 'UFDATA_001_2016',  --查詢的數(shù)據(jù)庫 
   --需要執(zhí)行的查詢
   @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'

郵件發(fā)送的結(jié)果

場景二,用戶系統(tǒng)在OA系統(tǒng)完成的外部用戶報(bào)備客戶審批完成后觸發(fā)郵件給對方。由于OA系統(tǒng)自動觸發(fā)外部郵件格式有顯示,據(jù)說需要js寫代碼,因?yàn)椴皇煜?,所以還是借助于sql server的郵件功能來實(shí)現(xiàn)。

預(yù)先寫一個view,三個字段,需要發(fā)送的郵箱,郵件主題,郵件內(nèi)容。

例子中將主題和主體做為一個,用到循環(huán)語句實(shí)現(xiàn)。

declare @mail nvarchar(200);
 declare @note nvarchar(500); 
 declare c cursor --游標(biāo)
 for select email,note from cux_dls_notice_v where operatedate + ' '+ operatetime >= DATEADD(MINUTE,-60,GETDATE()) --取最近一小時的記錄發(fā)送,計(jì)劃任務(wù)是60分鐘執(zhí)行一次。 
 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, --需要發(fā)送的郵箱
 @subject=@note, --郵件標(biāo)題
 @body=@note --郵件主題
 fetch next from c into @mail,@note;
 end
 close c;
 deallocate c;

場景三,還是在OA系統(tǒng)里,銷售申請?zhí)貎r(jià)之后提交審批,審批人系統(tǒng)可以收到郵件通知,并在郵件中和銷售討論后,再回到系統(tǒng)中審批。由于申請表的內(nèi)容多,需要用html的發(fā)送格式。

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

還是一樣把需要展現(xiàn)的內(nèi)容做成一個view,我個人喜歡做view,這樣有什么變化調(diào)整view就可以了。

/*聲明變量*/
declare @tableHTML varchar(max)
declare @mail nvarchar(200);
declare @note nvarchar(500);
--設(shè)置問候詞
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">請審批下面的價(jià)格申請:</font></p></td></tr>';
--設(shè)置表頭
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>';
--啟用游標(biāo)
declare c cursor for
--查詢結(jié)果
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,-60,GETDATE())  --找最近60分的記錄,并發(fā)送
) 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
,@note
,@tableHTML;
end
close c;
deallocate c;


總結(jié)

以上所述是小編給大家介紹的關(guān)于SQL數(shù)據(jù)庫 msdb.dbo.sp_send_dbmail 函數(shù)發(fā)送郵件的場景分析,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評論