Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
设置消息回复地址。
消息发送后就不能再更改此标头。
在下面的示例中,将回复地址添加到某消息。消息接收者随后可以使用该回复地址创建一个回复。
begin declare @msgid varchar(128); set @msgid = ml_qa_createmessage(); call ml_qa_setreplytoaddress( @msgid, 'myaddress' ); call ml_qa_settextcontent( @msgid, 'some content' ); call ml_qa_putmessage( @msgid, 'clientid\queuename' ); commit; end