How to Setup SQL Server Database Mail to Use Gmail and Hotmail

In previous post, we have written tutorial about how to send email using gmail in ASP.NET Core. In this post, we will show tutorial about using SQL Server Database Mail to use Gmail. Hope you enjoy this tutorial!

Get Started!

One great feature of SQL server is the ability to get alerts when there are issues. The alert process can send email notifications using Database Mail after you have configured your SMTP settings and setup your jobs and alerts to use this account. In some cases, you may not have a mail server, but still want to setup alerts. In this tip we will walk through how you can setup Database Mail to use email services like Gmail, Hotmail or Outlook.

Test Database Mail Configuration

1. Setup SQL Server Database Mail

When navigating through the Database Mail configuration wizard, you will encounter the below screen wherein the relevant details need to be entered. Let’s consider the example of using the SMTP server details for Hotmail. Enter the details as shown below.

Outgoing Mail Server (SMTP)

  • E-mail Address – Enter your Hotmail or Live account
  • Server Name – Enter as shown in screenshot
  • Port number – Enter as shown in screenshot
  • The server requires a secure connection (SSL) – check this box

    If this is left unchecked you will encounter this error message, ‘The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 4 (2011-12-14T23:36:13). Exception Message: Cannot send mails to mail server. (The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first).’

SMTP Authentication

  • Select ‘Basic authentication’
  • User Name – Enter your Hotmail or Live account
  • Password – Enter password of your Hotmail or Live account.
  • Confirm Password – Enter password of your Hotmail or Live account.

The below table outlines the necessary SMTP server details and port numbers for Hotmail, Gmail and Outlook.

2. Sending a Test Email Using SQL Server Database Mail

Once your Database Mail profile has been configured you can send test emails for validation to verify setup is configured correctly. Right click on Database Mail and select “Send Test E-Mail” as shown below.

You could also execute the Database Mail system procedure sp_send_dbmail with the appropriate parameters using this sample script below.

EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'Enter valid database profile name',
    @recipients = 'Enter Valid Email Address',
    @body = 'This is a test email sent from TEST server',
    @subject = 'TEST EMAIL',
    @importance ='HIGH'

3. For Gmail, It Requires Additional Steps

Database Mail works fine using the Hotmail or Outlook SMTP server details. However, an additional step is required to get Gmail to work correctly.

Gmail automatically raises a security flag when the Gmail SMTP server details is used for this purpose. Below is a screenshot of the alert generated when I used the Gmail SMTP server details.

You can also review additional information about this on the Database Mail logs. You can get this information by right clicking on the Database Mail feature and selecting the “View Database Mail Log” option as shown below.

In order to fix the issue with Gmail, you need to enable the option to “Allow less secure apps”. This is a setting in your Gmail account that needs to be enabled.

4. Troubleshooting Database Mail

After testing, if you are unable to receive notification emails, you could use the below Database Mail views for troubleshooting.

Find successfully sent email

This contains one row for each message successfully sent by Database Mail.

select * from msdb.dbo.sysmail_sentitems

Find unsent email

This contains one row for each message that has an unsent or retrying status.

select * from msdb.dbo.sysmail_unsentitems

Find failed email attempts

This contains one row for each message that has a failed status.

select * from msdb.dbo.sysmail_faileditems

Additional options

Here are some additional views sysmail_event_log and sysmail_allitems.

There is also a Database Mail system stored procedure msdb.dbo.sysmail_help_queue_sp which could be used as well.

For detailed steps on troubleshooting Database Mail issues, refer to this link.

Conclusion

The above steps were performed on SQL Server 2019 Developer edition and I tested successfully using my Gmail, Hotmail and Outlook accounts, but this should work with SQL Server 2005 and later.

If you find this tutorial helpful, you can share to others. Thank you

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *