Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

Overview

Gets or sets the message sender.

MessageContact myMessage.From { get; set; }

Remarks

If not set default sender is used.

When setting this property email address string is accepted.

Example

var msg = $Messages.New();
msg.From = 'john.lenon@mail.com';
// or
msg.From = 'John <john.lenon@mail.com>';

Types

MessageContact

Represents a mail contact as recipient or sender.

{ // Email address of contact. Address : string // Display name of contact. DisplayName : string }

  • No labels