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.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 xp_readmail

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 master

EXEC @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.

   

- Advertisement -