Krok 1) Vytvořte profil a účet
Musíte vytvořit profil a účet pomocí Průvodce konfigurací databáze pošty, ke kterému lze přistupovat z kontextové nabídky Konfigurovat poštu databáze v uzlu Database Mail v Management Node. Tento průvodce se používá ke správě účtů, profilů a globálního nastavení Database Mail.
Krok 2)
RUN:
sp_CONFIGURE 'show advanced', 1
GO
RECONFIGURE
GO
sp_CONFIGURE 'Database Mail XPs', 1
GO
RECONFIGURE
GO
Krok 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.'
Procházení tabulky
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
Zveřejnili to na následujícím odkazu http://ms-sql-queries.blogspot.in/2012/12/how-to-send-email-from-sql-server.html