最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Howtosendemailusingsqlserver

来源:动视网 责编:小采 时间:2020-11-09 15:36:28
文档

Howtosendemailusingsqlserver

Howtosendemailusingsqlserver: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: Configure email profile and send test email using SQL Server Select and send d
推荐度:
导读Howtosendemailusingsqlserver: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: Configure email profile and send test email using SQL Server Select and send d


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: Configure email profile and send test email using SQL Server Select and send d

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:

  • Configure email profile and send test email using SQL Server
  • Select and send data in mail
  • Schedule daily mail from SQL Server
  • 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.

    Step 3

    The following window appears:

    Click Next.

    Step 4

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

    Step 5

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

    Step 6

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

    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.

    Step 8

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

    Step 9

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

    Step 10

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

    Step 11

    Now the email service has been configured, click Close.

    Step 12

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

    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!!

    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:

    Collapse | Copy Code

     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.

    Collapse | Copy Code

     GO 
     EXEC sp_send_dbmail @profile_name='MyTestMail', 
     @recipients='manishki@live.com', 
     @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:

    Collapse | Copy Code

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

    文档

    Howtosendemailusingsqlserver

    Howtosendemailusingsqlserver: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: Configure email profile and send test email using SQL Server Select and send d
    推荐度:
    标签: sql Email send
    • 热门焦点

    最新推荐

    猜你喜欢

    热门推荐

    专题
    Top