Skip to content

ReplyTo

Gets or sets the message reply-to address. This property is optional.

Type

1
[MessageContact](./MessageContact/index.md)

Declaration

1
 MessageContact myMessage.ReplyTo

Remarks

Set a reply-to address

1
2
3
4
var msg = $Messages.New();
msg.ReplyTo = '[email protected]';
// or
msg.ReplyTo = 'Sales <[email protected]>';

See Also