Viewing 3 posts - 1 through 3 (of 3 total)
Here is the text of the stored procedure:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
/* THIS IS A GENERAL SEND MAIL STORED PROCEDURE
Written by Ron West (ronw@ronwest99.com)
Dynamically creates accounts and...
February 13, 2006 at 2:56 pm
Here's the security setup that's required:
--create the role in msdb
USE [msdb]
GO
/****** Object: DatabaseRole [CanSendEmail] Script Date: 11/03/2005 09:31:08 ******/
CREATE ROLE [CanSendEmail] AUTHORIZATION [dbo]
grant select on sysmail_account to CanSendEmail
grant select on...
February 13, 2006 at 2:55 pm
There was one thing missing in the implementation of 2005 database mail: Dynamic Profiles.
The company I work for sends lots of email on behalf of our reseller customers (impersonating them).
It took a...
February 13, 2006 at 2:53 pm
Viewing 3 posts - 1 through 3 (of 3 total)