March 29, 2005 at 2:02 am
We're using XPSMTP.DLL (http://www.sqldev.net/xp/xpsmtp.htm) to send HTML emails from a SQL Server job, but we are having some problems with it.
Does anyone know if SQL Server 2005 SMTP email will be able to replace this popular third-party tool and enable us to send HTML emails from a SQL Server job?
March 29, 2005 at 7:05 am
Hi Wayne,
I've been looking into this and am happy to say that it should, MS have finally listened to the users and removed the dependance on outlook. It's been a big annoyance here for a while (untill we came up with workarounds) as we're on 64-bit clustered SQL Servers and as you can imagine it's not an easy thing to get them working with 32-bit DLL's
I think it's going to be called SQL iMail (unless they change the name before production).
March 29, 2005 at 3:52 pm
What problems are you having? We've been using xp_smtp_sendmail for over 18 months without any issues.
--------------------
Colt 45 - the original point and click interface
March 30, 2005 at 1:16 am
It's a 64-bit thing, the dll works exactly as I wanted it to on all of our 32-bit systems.
Doesn't really matter as we came up with a workaround
March 30, 2005 at 2:25 am
April 28, 2005 at 10:45 am
Was anybody able to successfully test this on 64-bit sql server?
Eric
April 28, 2005 at 1:09 pm
I've not been able to get xp_smtp working on 64bit and have reverted to the cdosys proc.
April 29, 2005 at 12:54 am
Test what? The dll from sqldev.net is a 32-bit dll, so as Mike says it does not work on 64-bit (though he seems to have some workaround). The smtp mail component in SQL Server 2005, now called Database Mail (used to be SQLiMail), does work on 64-bit.
May 2, 2005 at 10:37 am
Well..thats fine. I reverted to cdosys.
May 2, 2005 at 4:49 pm
Why not use 'Database Mail' that comes with SQL 2005??
--------------------
Colt 45 - the original point and click interface
May 3, 2005 at 1:51 pm
Yes, I am also looking into that but we need to move to 64-bit sql server ASAP. I needed something in the interim.
May 24, 2007 at 7:10 am
I've also receive this error message:
disconnecting from server failed.
Does anybody know where is problem?
Thanks
May 24, 2007 at 8:54 am
Problem is solved by complete reinstall of xp_smtp_sendmail
dbcc xpsmtp80(free)
exec sp_dropextendedproc 'xp_smtp_sendmail'
EXEC sp_addextendedproc 'xp_smtp_sendmail', 'xpsmtp80.dll'
grant execute on xp_smtp_sendmail to public
Viewing 13 posts - 1 through 12 (of 12 total)
You must be logged in to reply to this topic. Login to reply