Tagged Questions
The database-mail tag has no wiki summary.
2
votes
3answers
1k views
How to give access to SQL Server database mail procedures for a Login in a different database?
I'd like to know how to set up permissions within SQL Server to allow my application Login/Role to be able to send email using msdb.dbo.sp_send_dbmail.
I have a database MyDb, a user MyUser who is a ...
2
votes
1answer
2k views
Getting SQL Database Mail to Format HTML Table with 2 Columns
I'm using SQL Server 2005 and am sending a Database Mail formatted in HTML. I am getting the results I need, but I'm having difficulty formatting the table the way I want it.
There are two separate ...
2
votes
2answers
623 views
How to set up access to MSSQL 2005 Database Mail?
I've just setup Database mail within MSSQL 2005. I have been able to send email from an administrator account on the server and through a SQL Server Agent job. But, I unable to send email when I tried ...
1
vote
0answers
668 views
Only some e-mail gets sent successfully from sp_send_dbmail (Database Mail) on SQL Server 2005
this is my first attempt on this forum to find an answer to what is happening when I use sp_send_dbmail on SQL Server 2005. I have been googeling but without success and I don't know really where to ...
1
vote
2answers
179 views
No rows in MSDB.dbo.sysmail_faileditems
Initially I was getting a "no SELECT privilege" error when attempting to query contents for a report I need to create. So we granted DatabaseMailUserRole in MSDB to my account - I see columns, but ...
0
votes
1answer
19 views
How can we encode the image into the body of the email when sending mail using database mail in sql 2008?
How can we encode the image into the body of the email when sending mail using database mail in sql 2008
I m using :
exec msdb.dbo.sp_send_dbmail
@profile_name = 'DBMail',
@recipients = ...
0
votes
0answers
26 views
SQL Server 2005 - Database Mail, send from someone else's email address?
In a project we are working on with a client, we are using SQL Server 2005 Database Mail as a mailer system..
One of the automated project reminder emails needs to appear that it's coming from one of ...
0
votes
1answer
363 views
Scripting setup of database mail
I've used the SQL Server 2008 GUI to set up database mail profiles & accounts on my test server, and I'd now like to duplicate those to our production database.
Is there a way to generate a ...
0
votes
1answer
185 views
sp_notify_operator: The specified @operator_name does not exist (but it does!)
OK, so I think I'm going mad here! Here's where I am.
SQL Server 2008: I've set up Database Mail, and I've sent myself a test email. Simple, works fine.
I've created an operator, called 'Tom'. I've ...
0
votes
1answer
108 views
How to Configure and run DataBase Mail in SQL Server
How to enable and run Database Mail in SQL Server 2008 . I know that it need
Enabling Service Broker
Configuring SMTP (a Mail server is needed)
Using Configuration Storeprocedure.
I don't know ...
0
votes
2answers
131 views
Configure database mail settings
How can I configure database mail settings and send the mail from the database in Sharepoint created default database instance as i can not find where to configure the database mail settings from the ...
0
votes
3answers
163 views
SQL Execute per each result row
I've been googling around for a bit but I can't seem to find an answer to this. I'm trying to use the Database Mail in SQL Server 2005 in a stored procedure where the idea is to send separate mail for ...
0
votes
2answers
236 views
Sending E-Mail via DatabaseMail with C#
How can I send e-mails using Database Mail (which is integrated in SQL Server) in C# ? I couldn't find a useful article or something which can help me thoroughly.