Questions tagged [database-mail]

is a component of Microsoft SQL Server for sending e-mail messages.

Database Mail is a component of Microsoft SQL Server for sending e-mail messages directly from the SQL Server Database Engine.

95 questions
-1
votes
2 answers

Using SQL to send emails based on new entries in tables

I'm looking for a way to send emails (or reminders/confirmations) to users who create a new record in a web application, which is then inserted into a table. Basically a dynamic way of sending emails. I've been reading online about Triggers and DB…
Hugh
  • 1
  • 1
-1
votes
1 answer

DB Mail is working with other carriers but not sprint

So the database mailer sends the sms to Verizon, att, Cricket etc.. but when sending to a sprint phone number using messaging.sprintpcs.com they receive a text with what looks to be the message encrypted. We have tried with with different sprint…
Tyriddik
  • 104
  • 1
  • 6
-1
votes
1 answer

SSMS query window hyperlink in text

I've put together a variable of type nvarchar(max) for the body of an email being send with db_sendmail. The problem is that in copying the body over from a stock email message into the SSMS query window, only those hyperlinks that are actual web…
-1
votes
1 answer

Send emails from SQL Server 2008

I would like to send emails from SQL Server 2008. Here is my code: USE mydatabase declare @keywords nvarchar(3000) Select @keywords = null SELECT @Keywords = Coalesce(@Keywords + '; ', '') + Email from SharedDataUser EXEC…
-3
votes
1 answer

Database Mail performance

SQL Server Database Mail provides nice built-in features like logging. I would like to use it to send large amounts of email (millions+) really fast (several millions / hour). Is Database Mail designed for this kind of usage and will I reach the…
Aestek
  • 35
  • 3
1 2 3 4 5 6
7