Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
howard7890
Starting Member
7 Posts |
Posted - 2002-11-04 : 16:42:35
|
| I am trying to develop email functionaliity.I tryed creating this sproc:CREATE PROCEDURE sp_STML ASdeclare @rc intexec @rc = master.dbo.xp_smtp_sendmail@FROM_NAME = 'Howard Kline',@TO = 'howard.kline@amd.com',@subject = 'Hello SQL Server SMTP Mail',@server = 'caexmta5.amd.com'select RC = @rcGOI get rc = 1, when I execute this.What am I doing wring?Any ideas?Thanks. |
|
|
Merkin
Funky Drop Bear Fearing SQL Dude!
4970 Posts |
|
|
|
|
|