Viewing 5 posts - 1 through 5 (of 5 total)
Actually, I wrote an enhanced version that allows for dynamic SMTP servers as well as logging to a SQL table. I'll update the article or send in a new one;...
February 20, 2012 at 1:35 pm
And you verified the NTFS permissions?
November 19, 2010 at 4:47 am
It was changed to a shared path - do you mean a UNC path? Is the path to the file something like this: \\server\folder? If so, then try mapping that...
November 19, 2010 at 3:32 am
I would validate the physical path and permissions.
November 18, 2010 at 9:19 am
using System.Net;
using System.Net.Mail;
public class SQLCLREmail
{
[Microsoft.SqlServer.Server.SqlProcedure()]
public static void SendEmail(string recipients, string CC, string BCC, string subject, string @from, string body, string strAttachments, string strSMTPServer, string strSMTPServerPort, string strSMTPServerUser,
string strSMTPServerPwd)
{
using (MailMessage MailMsg...
November 4, 2010 at 7:36 am
Viewing 5 posts - 1 through 5 (of 5 total)