SQL Server 2005发邮件的代码

exec  msdb.dbo.sp_send_dbmail
        
@recipients =   ' [email protected] ' ,
        
@copy_recipients   =   ' [email protected] ' ,
        
@profile_name   =   ' PBCRM_Mail_Account ' ,
        
@subject   =   ' Database mail test ' ,
        
@body   =   ' <h1>Database mail test</h1> ' ,
        
@body_format   =   ' HTML '  ;

注意事项:

要确保相应的Profile已经建立,database mail功能要打开。

你可能感兴趣的:(sql server 2005)