Sending Email in Your Own Store Procedure | Database Journal

Sending Email in Your Own Store Procedure

Mar 3, 2003
1 minute read

>>Script Language and Platform: SQL Server 2000
This SQL code can be ran from the SQL Editor or included in a stored procedure which can run as a job in SQL Server 2000 to send automated email when a certain event occurs. (Management | SQL Server Agent | jobs )
You need to have SMTP running on the Server.

Author: Mario Levesque

DECLARE @SenderAddress varchar(100)
DECLARE @RecipientAddress varchar(100)
DECLARE @Subject varchar(200)
DECLARE @Body varchar(8000)
DECLARE @oMail int –Object reference
DECLARE @resultcode int
SET @SenderAddress = ‘someone@someisp.com’
SET @RecipientAddress= ‘someone@someisp.net’
SELECT @Subject = ‘subject of email for today ‘ + CAST(getdate() AS varchar(12))
SET  @Body = ‘This is the body of my email’
EXEC @resultcode = sp_OACreate ‘CDONTS.NewMail’, @oMail OUT
IF @resultcode = 0
BEGIN
   EXEC @resultcode = sp_OASetProperty @oMail, ‘BodyFormat’, 0
   EXEC @resultcode = sp_OASetProperty @oMail, ‘MailFormat’, 0
   EXEC @resultcode = sp_OASetProperty @oMail, ‘Importance’, 1
   EXEC @resultcode = sp_OASetProperty @oMail, ‘From’,
@SenderAddress
   EXEC @resultcode = sp_OASetProperty @oMail, ‘To’,
@RecipientAddress
   EXEC @resultcode = sp_OASetProperty @oMail, ‘Subject’,
@Subject
   EXEC @resultcode = sp_OASetProperty @oMail, ‘Body’, @Body
   EXEC @resultcode = sp_OAMethod @oMail, ‘Send’, NULL
   EXEC sp_OADestroy @oMail
END



Disclaimer:
We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…

Disclaimer Continued

Back to Database Journal Home

Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.