Use SQL Server stored procedures sp_send_dbmail Send mail configuration method (text) _mssql

Source: Internet
Author: User
Tags metabase

1 Create a profile and account (create a profile and configure Database Mail Wizard to access the accounts used in the Database Mail node and its context menu in the Metabase Mail Management node). )

Open the database server------manage-------Database Mail------Right-click---configure Database Mail (you can also see admin-configured mail accounts and profiles)

The profile name here is used as a parameter when using sp_send_dbmail

Point "Add"

Where the account name can be arbitrarily specified (describe the function can), the focus is the mail sending server (SMTP) configuration: The e-mail address is the sender's mail address, the display name is the sender name, reply e-mail (can be the same as the e-mail address), the server name is the server send server (eg: QQ for smtp.exmail.qq.com) The port number does not change; SMTP authentication: Basic authentication (configures your own message sender address and password).

You can add multiple sender accounts and one fails to send with another.

Point "Next"


2) Configure email
--You can manually use SQL code to start the Database Mail feature (if you do not use SQL code to start the Database Mail feature, during the Metabase Mail Wizard, you will be prompted "whether to start the Database Mail feature", select "Yes")
exec sp_configure ' show advanced options ', 1
Reconfigure
Go
exec sp_configure ' DATABASE MAIL XPS ', 1
Reconfigure
Go
/*
Database Mail will keep a copy of the email sent and we can query through Sysmail_allitems, Sysmail_sentitems, Sysmail_unsentitems, Sysmail_faileditems. The sending status of the message will be saved in the Sysmail_mailitems table, the Sent_status column in the table will be displayed as 1 when it is successfully sent, and the Sent_status column will appear as 2 when the send fails, 3 when it is sent.
As shown below, the log file can be viewed in the Sysmail_log table
*/


3) Send email.
--or execute stored procedures under the msdb database
EXEC sp_send_dbmail @profile_name = ' db_mail_test ',
@recipients = ' test@Example.com ',
@subject = ' Test message ',
@body = ' Test sending Database Mail, success. '

Point "Send ..."

Finally to the mailbox or to view the mail log verification.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.