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 |
|
abacusdotcom
Posting Yak Master
133 Posts |
Posted - 2005-04-28 : 11:07:58
|
| Hi All, I want to know if it possible to send a customise message from sql. Sql server will send this message when a particular event occurs or from a result of a query on a particular exceptionn report.Over to the GURUS....Thanks, as usualLekanI sign for fame not for shame but all the same, I sign my name. |
|
|
mikejohnson
Posting Yak Master
153 Posts |
Posted - 2005-04-28 : 11:13:22
|
| we use xp_smtp, does that answer your question?declare @ResponseCode intEXEC @ResponseCode = master..xp_smtp_sendmail @FROM = '', @FROM_NAME = '', @TO = '', @CC = '', @BCC = '', @subject = '', @type = 'text/html', @message = '', @server = 'server' |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
|
|
|