Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
1k views

SQL Server SP_SEND_DBMAIL Image file attachment

I am using a trigger on a table to send an email using sp_send_dbmail. I want to include a file attachment in the email of an image type. The raw data for the jpeg is stored in the ndl_Image column ...
1
vote
1answer
182 views

Convert a SQL query result table to an HTML table for email

I am running a SQL query that returns a table of results. I want to send the table in an email using dbo.sp_send_dbMail. Is there a straightforward way within SQL to turn a table into an HTML table? ...
1
vote
1answer
348 views

How can I determine the error code from sp_send_dbmail in SQL Server 2005?

I'm trying to send an attachment using sp_send_dbmail in SQL Server 2005. I first wrote a CLR stored procedure that saves some content to a file on the server, then calls the stored procedure listed ...
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
294 views

sql server 2008 dbmail error sp_send_dbmail - cannot insert null value into 'last_mod_user' in table sysmail_mailitems

Our dbmail got hosed and I'm trying to resolve the issue. I've recently recreated sp_send_dbmail, but am not getting an odd error regarding a null value in last_mod_user column in table ...
1
vote
1answer
458 views

Testing the result set of an sp_send_dbmail query?

I'm trying to send an email using sp_send_dbmail in Sql Server 2005. I have both body text and a query being sent as an attachment. Sometimes, however, the query will return an empty dataset. Is ...
1
vote
1answer
1k views

How can I use sp_send_dbmail to send multiple queries?

I'm trying to send an email using sp_send_dbmail. I need it to send one query as an attachment and another as part of the body of the email. The problem is that sp_send_dbmail only has one @query ...
1
vote
0answers
392 views

sp_send_dbmail inserts line-breaks into the attached xml query result

When you use msdb.dbo.sp_send_dbmail to send a query result as an attachment, you'll have to provide the @query_result_width parameter which is an integer between 10 and 32767. Now, If you use For XML ...
1
vote
2answers
232 views

send dbmail on @@error from sql server 2005

I am trying to send database mail when error occurs inside the transaction.My setup for dbo.sp_send_dbmail is correct , when I execute the proc I do get an email within 1 min. However when I try to ...
1
vote
1answer
138 views

SQL Server 2005 sp_send_dbmail

When we use sp_send_dbmail to send email with attachment, the attachment gets copied into a folder inside C:\Windows\Temp. As we have many emails to be sent every day, the temp folder grows rapidly. ...
1
vote
2answers
1k views

sp_send_dbmail will not send query results

I've tried every avenue on every damn forum suggested, but to no avail! Need to send results of SQLPERF(logspace), that have been stored in a table, via sp_send_dbmail to recipient. Step 2 of job is ...
1
vote
2answers
1k views

sp_send_dbmail attachment encoding

I am using sp_send_dbmail in SQL2005 to send an email with the results in an attachment. When the attachment is sent it is UCS-2 Encoded, I want it to be ANSI or UTF-8. Here is the SQL EXEC ...
0
votes
1answer
257 views

How to change encoding of attachments from sp_send_dbmail?

Is there a way to change the encoding from default 'UniCode' to UTF-8 while generating data attachments from sp_send_dbmail on SQL Server? I found that there used to be a flag 'ANSI_Attachment' to ...
0
votes
2answers
1k views

How can I send plain text email (with line breaks) using sp_send_dbmail?

I have a SQL Server 2008 procedure that sends email via sp_send_dbmail. I'm using the following code: set @bodyText = ( select N'Here is one line of text ' + ...
0
votes
2answers
324 views

How to send mail from Stored Procedure?

I need to send a mail from Stored Procedure. I knew it is possible. I studied it from this link . How do i authenticat in SMTP Server. Do you have any idea.? Thanks
0
votes
1answer
438 views

specify content type of an attachment in sql server sp_send_dbmail

How can I specify the content type of an attachment when sending emails using sp_send_dbmail? The content type is specified as application/octet-stream for Zip, PDF files. But I need to change it to ...
0
votes
0answers
175 views

DB Mail - No errors but email never received

I am looking for either a solution to this problem or some ideas on how to debug. I have a website that calls a cobol executable. This occurs on the application server. The cobol exe connects to a ...
0
votes
1answer
2k views

How to specify the reply-to address using sp_send_dbmail in SQL Server

I need to send an email to someone and want them to be able to simply reply to the email without having to specify the email address. Using sp_send_dbmail sets the reply-to address as the name of the ...
0
votes
1answer
821 views

How do I use sp_send_dbmail to send the content of a VARBINARY column?

I have some files stored in a SQL Server 2005 table in a VARBINARY(MAX) column. I need to email these files to users on a schedule, and though I can write a C# service to extract and send the email ...