This article is applicable to following
SQL Server versions i.e. 2008, 2008R2, 2012, 2014, 2016, 2017, 2019 and 2022.
Configuring SQL Server for sending emails
In order to start sending emails, the very first thing to be done is to configure
SQL Server for sending emails from Database.
Sending Email using sp_send_dbmail Stored Procedure in SQL Server
Once the
SQL Server Database is configured, you are now ready to send emails.
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'Mudassar_Email_Profile'
,@recipients = 'recipient@gmail.com'
,@subject = 'Email from SQL Server'
,@body = 'This is my First Email sent from SQL Server :)'
,@importance ='HIGH'
GO
Once executed, the following messages will appear which confirms, your email has been queued.
Checking Emails Status and Errors using Log Tables
Once the
Stored Procedure sp_send_dbmail is executed, the mails are queued and then sent.
GMAIL SMTP Errors
The possible errors (exceptions) occurring while sending email using GMAIL SMTP are covered in the following article.
Screenshot
Downloads