微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

How to send email using sqlserver

This is from CodeProject:http://www.codeproject.com/Articles/846204/How-To-Send-Mail-Using-sql-Server-Part

Introduction

There are three parts for this tutorial:

Step 1

Log in to sql Server 2008 with a correct user name and password.

Step 2

Expand the Management tab,then select sql Server Logs,then right-click on Database Mail,then select Configure Database Mail.

Picture1

Step 3

The following window appears:

Picture2

Click Next.

Step 4

Select the Set up Database Mail by performing the following tasks: radio button.

Picture3

Step 5

Click Next,then a confirmation Box appears; click OK on that.

Picture4

Step 6

When you click OK,then write the profile name description and click on Add.

Picture5

Step 7

Then,a new window appears where you provide your profile name and configure Outgoing Mail Server(SMTP) then click Basic authentication and provide your email id and password then click OK.

Picture6

Step 8

Then in the new window,it will show your profile,check that and click Next.

Picture7

Step 9

Then in the new window,the Configure System Parameters description is shown.

Picture8

Step 10

Click Next. It will show a confirmation about your profile; click Finish.

Picture9

Step 11

Now the email service has been configured,click Close.

Picture10

Step 12

Send a test email by right-clicking on database mail and click Send Test E-Mail.

Picture11

Step 13

Provide the Test Email Id and click On Send Test E-Mail. Then check your mail to see if you got the mail. Enjoy!!

Picture12

Note

After the Account and the Profile are created successfully,we need to configure the Database Mail. To configure it,we need to enable the Database Mail XPs parameter using the sp_configure Stored Procedure,as shown here:

    sp_CONfigURE 'show advanced',1  
    GO  
    RECONfigURE  
    GO  
    sp_CONfigURE 'Database Mail XPs',1  
    GO  
    RECONfigURE  
    GO  

Output Message

The Configuration option "show advanced options" changed from 0 to 1. Run the RECONfigURE statement to install.

The configuration option "Database Mail XPs" changed from 1 to 1. Run the RECONfigURE statement to install.

Use the following query to send mail using query:

Send Mail Query

USE msdb;--Must Use msdb database,otherwise you will get error.

    GO  
    EXEC sp_send_dbmail @profile_name='MyTestMail',@recipients='[email protected]',@subject='My Test Mail Service.',@body='Database Mail Received Successfully.'   

This is the body of this message.

Note

If you are using a database other than msdb,then use a stored procedure like msdb.dbo.sp_send_dbmail. The log can be checked in sysmail_log table as shown below:

    SELECT * FROM sysmail_mailitems  
    GO  
    SELECT * FROM sysmail_log  
    GO  
    select * from sysmail_log  

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐