Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
SQL Server
Sends an e-mail message to an operator using Database Mail.
Transact-SQL syntax conventions
sp_notify_operator
[ [ @profile_name = ] N'profile_name' ]
[ , [ @id = ] id ]
[ , [ @name = ] N'name' ]
[ , [ @subject = ] N'subject' ]
[ , [ @body = ] N'body' ]
[ , [ @file_attachments = ] N'file_attachments' ]
[ , [ @mail_database = ] N'mail_database' ]
[ ; ]
The name of the Database Mail profile to use to send the message. @profile_name is sysname, with a default of NULL
. If @profile_name isn't specified, the default Database Mail profile is used.
The identifier for the operator to send the message to. @id is int, with a default of NULL
.
One of @id or @name must be specified.
The name of the operator to send the message to. @name is sysname, with a default of NULL
.
One of @id or @name must be specified.
An e-mail address must be defined for the operator before they can receive messages.
The subject for the e-mail message. @subject is nvarchar(256), with a default of NULL
.
The body of the e-mail message. @body is nvarchar(max), with a default of NULL
.
The name of a file to attach to the e-mail message. @file_attachments is nvarchar(512), with a default of NULL
.
Specifies the name of the mail host database. @mail_database is sysname, with a default of msdb
. If no @mail_database is specified, the msdb
database is used by default.
0
(success) or 1
(failure).
Sends the message specified to the e-mail address of the operator specified. If the operator has no e-mail address configured, sp_notify_operator
returns an error.
Database Mail and a mail host database must be configured before a notification can be sent to an operator.
You can grant EXECUTE
permissions on this procedure, but these permissions might be overridden during a SQL Server upgrade.
Other users must be granted one of the following SQL Server Agent fixed database roles in the msdb
database:
For details about the permissions of these roles, see SQL Server Agent Fixed Database Roles.
The following example sends a notification e-mail to the operator François Ajenstat
using the AdventureWorks Administrator
Database Mail profile. The subject of the e-mail is Test Notification
. The e-mail message contains the sentence, This is a test of notification via e-mail
.
USE msdb;
GO
EXEC dbo.sp_notify_operator
@profile_name = N'AdventureWorks Administrator',
@name = N'François Ajenstat',
@subject = N'Test Notification',
@body = N'This is a test of notification via e-mail';
GO
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today