About 1,220 results
Open links in new tab
  1. sp_send_dbmail (Transact-SQL) - SQL Server | Microsoft Learn

    When this parameter is 1, Database Mail sends the e-mail message and includes the query error message in the body of the e-mail message. When this parameter is 0, Database Mail doesn't send …

  2. Sending mail messages from SQL Server

    Apr 6, 2020 · SQL Server provides 2 stored procedures to send email messages. They are sp_send_dbmail and sp_notify_operator. Both stored procedures are stored in msdb. The procedure …

  3. How to send email from SQL Server? - Stack Overflow

    Nov 9, 2012 · How can I send an email using T-SQL but email address is stored in a table? I want to loop through the table and be able to send email. I cannot find a good example of doing this so far.

  4. SQL Server Database Mail

    Database email allows you to send email messages to users from the SQL Server Database Engine. The email message can be plain text or HTML and may include attach files. The Database Mail is …

  5. How to Send Emails from SQL Server (T-SQL) - Database.Guide

    Sep 2, 2020 · The actual act of sending mail is done with the sp_send_dbmail stored procedure. But before you start sending emails from SQL Server, you need to enable and configure Database Mail.

  6. How to Send Email with SQL Server’s sp_send_dbmail

    Dec 10, 2024 · SQL Server doesn’t make any of that easy. Instead, build your emails in app code like C# or Java, and use transactional email providers like Sendgrid or Postmark to make sure the emails …

  7. Database Mail - SQL Server | Microsoft Learn

    Nov 21, 2025 · Database Mail is an enterprise solution for sending e-mail messages from the SQL Server Database Engine or Azure SQL Managed Instance. Your applications can send e-mail …

  8. Master SQL Server Database Mail Setup: SSMS & T-SQL

    Aug 15, 2025 · Learn to configure Database Mail in SQL Server using SSMS and T-SQL scripts. Ensure timely alerts and improve database management efficiency.

  9. Sending Email From SQL Server - kailashsblogs.com

    May 17, 2025 · Database Mail is a component in SQL Server that allows you to send emails using SMTP (Simple Mail Transfer Protocol). It supports HTML formatting, file attachments, and query …

  10. Setting up Database Mail for SQL Server

    May 22, 2024 · You can configure SQL Server to use Database Mail to send emails from SQL Server and include content in the email body as well as send attachments. In this article, we look at how to …