Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

...

MessageContact myMessage.From { get; set; }

Remarks

If not set default sender is used.

When setting this property email address string is accepted.

Example

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

Types

Contact

...

MessageContact

...

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