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