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 |
|
noelson
Starting Member
31 Posts |
Posted - 2001-03-19 : 20:56:48
|
| can anyone tell me how to configure the xp_readmail to work?can I just use the sp_processmail instead of creating new procedure? can anyone also explain me the code below?USE masterEXEC @status = xp_readmail @msg_id = @message_id, @originator = @originator OUTPUT, @cc_list = @cc_list OUTPUT, @subject = @msgsubject OUTPUT, @message = @query OUTPUT, @peek = 'TRUE', @suppress_attach = 'TRUE'for example my table name is TEST. |
|
|
|
|
|