Sets the reply-to address of the message.
You cannot alter this header after the message has been sent.
In the following example, a reply-to-address is added to a message. The recipient of the message can then use that reply-to-address to create a reply.
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