Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

Wie sende ich E-Mails von SQL Server?

Schritt 1) ​​Profil und Konto erstellen

Sie müssen ein Profil und ein Konto mit dem Assistenten zum Konfigurieren von Datenbank-E-Mails erstellen, auf den Sie über das Kontextmenü „Datenbank-E-Mail konfigurieren“ des Datenbank-E-Mail-Knotens im Verwaltungsknoten zugreifen können. Dieser Assistent wird zum Verwalten von Konten, Profilen und globalen Datenbank-E-Mail-Einstellungen verwendet.

Schritt 2)

AUSFÜHREN:

sp_CONFIGURE 'show advanced', 1
GO
RECONFIGURE
GO
sp_CONFIGURE 'Database Mail XPs', 1
GO
RECONFIGURE
GO

Schritt 3)

USE msdb
GO
EXEC sp_send_dbmail @profile_name='yourprofilename',
@recipients='[email protected]',
@subject='Test message',
@body='This is the body of the test message.
Congrates Database Mail Received By you Successfully.'

Um die Tabelle zu durchlaufen

DECLARE @email_id NVARCHAR(450), @id BIGINT, @max_id BIGINT, @query NVARCHAR(1000)

SELECT @id=MIN(id), @max_id=MAX(id) FROM [email_adresses]

WHILE @id<[email protected]_id
BEGIN
    SELECT @email_id=email_id 
    FROM [email_adresses]

    set @query='sp_send_dbmail @profile_name=''yourprofilename'',
                        @recipients='''[email protected]_id+''',
                        @subject=''Test message'',
                        @body=''This is the body of the test message.
                        Congrates Database Mail Received By you Successfully.'''

    EXEC @query
    SELECT @id=MIN(id) FROM [email_adresses] where id>@id

END

Dies wurde unter folgendem Link gepostet:http://ms-sql-queries.blogspot.in/2012/12/how-to-send-email-from-sql-server.html