Key features of Database Mail

  • SMTP-Based: By using an SMTP server to transmit emails, Database Mail does not require Microsoft Outlook or other MAPI-compliant client.
  • Secure and Reliable: Emails are sent consistently and securely thanks to its integration with SQL Server's security model and support for SSL encryption.
  • Profile and Account Management: Multiple mail profiles and accounts can be created with Database Mail, giving you flexibility in managing email settings and failover possibilities.
  • Asynchronous Processing: Emails are queued and sent via a background process, known as asynchronous sending, which reduces the impact on database performance.
  • Logging and Monitoring: Large-scale logging and monitoring features offered by Database Mail facilitate problem-solving and email activity auditing.
  • Integrated with SQL Server Agent: It can be easily integrated with SQL Server Agent to send job notifications, alerts, and query results.

Setting up Database Mail
Setting up Database Mail involves a few key steps, including enabling Database Mail, creating a mail profile, and configuring the SMTP server settings.

Step 1. Enable Database Mail

Before using Database Mail, it must be enabled in SQL Server.

  • Open SQL Server Management Studio (SSMS).
  • Connect to your SQL Server instance.
  • In Object Explorer, right-click on the server name and select Facets.
  • In the View Facets dialog box, ensure that Database Mail XPs is set to True.


Alternatively, you can enable it using T-SQL.
EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_configure 'Database Mail XPs', 1; RECONFIGURE;

Step 2. Configure Database Mail

  • In SSMS, expand the Management node.
  • Right-click Database Mail and select Configure Database Mail.
  • If Database Mail is not yet configured, select Set up Database Mail and follow the wizard.


Creating a Mail Profile

  • Profile Name: Provide a name for your mail profile.
  • SMTP Accounts: Create an SMTP account by providing the following details:
  • Account Name: A name for the SMTP account.
  • Email Address: The sender's email address.
  • Display Name: The name that will appear as the sender.
  • Reply Email: An email address for replies (optional).
  • SMTP Server Name: The name of your SMTP server.
  • Port: The port number (default is 25, or 587 for TLS/SSL).
  • Authentication: Provide credentials if required by the SMTP server.
  • Encryption: Choose SSL or TLS if your SMTP server requires encryption.

After configuring the profile and account, you can select it as the default profile or create additional profiles for different purposes.

Step 3. Test Database Mail configuration

Once Database Mail is configured, it's essential to send a test email to ensure everything is working correctly.
EXEC sp_send_dbmail @profile_name = 'YourProfileName', @recipients = '[email protected]', @subject = 'Test Email from SQL Server', @body = 'This is a test email sent using Database Mail.';

If the email is successfully sent, you'll see a confirmation message in SSMS.

Using Database Mail

Sending Emails with Query Results
You can use Database Mail to send the results of a query directly in the email body.
EXEC sp_send_dbmail @profile_name = 'YourProfileName', @recipients = '[email protected]', @subject = 'Query Results', @query = 'SELECT TOP 10 * FROM YourTable', @execute_query_database = 'YourDatabase';

Sending Emails with Attachments
Database Mail allows you to attach files to your emails.
EXEC sp_send_dbmail @profile_name = 'YourProfileName', @recipients = '[email protected]', @subject = 'Daily Log File', @body = 'Please find the attached log file.', @file_attachments = 'C:\Logs\logfile.txt';

Automating Email Notifications with SQL Server Agent
You can configure SQL Server Agent jobs to send notifications via Database Mail upon completion or failure.

  1. In SSMS, expand SQL Server Agent > Jobs.
  2. Right-click a job and select Properties.
  3. In the Notifications section, configure the job to send an email on success, failure, or completion.

Monitoring and Troubleshooting Database Mail
Viewing Sent Emails
SQL Server logs all emails sent through Database Mail. You can view these logs using the following query.SELECT * FROM msdb.dbo.sysmail_allitems;This will show you a history of all sent emails, their status, and any errors encountered.
Troubleshooting Errors
If emails are not being sent, you can check the Database Mail logs for errors.SELECT * FROM msdb.dbo.sysmail_event_log;This table contains detailed error messages that can help you troubleshoot any issues with Database Mail.
Advantages of Database Mail Over SQLMail

  • No MAPI Dependency: Unlike SQLMail, Database Mail does not require a MAPI-compliant email client like Outlook, making it simpler and more reliable to set up.
  • Better Performance: Database Mail sends emails asynchronously, reducing the performance impact on your SQL Server.
  • Enhanced Security: Database Mail integrates with SQL Server’s security model and supports SSL/TLS encryption, providing a secure way to send emails.
  • Scalability: Database Mail is designed to handle high volumes of emails, making it suitable for enterprise environments.
  • Logging and Auditing: Database Mail provides comprehensive logging and auditing capabilities, which SQLMail lacks.

Conclusion
An effective and flexible solution for sending email notifications straight from SQL Server is Database Mail. It provides a safe, dependable, and user-friendly way to set up and send email notifications, deliver query results, and handle communication straight from your database. It is strongly advised that you switch to Database Mail if you are still using SQLMail in order to benefit from its more recent capabilities.

HostForLIFE.eu SQL Server 2022 Hosting
HostForLIFE.eu is European Windows Hosting Provider which focuses on Windows Platform only. We deliver on-demand hosting solutions including Shared hosting, Reseller Hosting, Cloud Hosting, Dedicated Servers, and IT as a Service for companies of all sizes.