Office.EmailUser interface
Represents an email account on an Exchange Server.
Remarks
Minimum permission level: read item
Applicable Outlook mode: Read
Examples
// Add recipients to the To field of an email.
const recipients: Office.EmailUser[] = [
{
"displayName": "Allie Bellew",
"emailAddress": "allieb@contoso.com"
},
{
"displayName": "Alex Darrow",
"emailAddress": "alexd@contoso.com"
}
];
Office.context.mailbox.item.to.addAsync(recipients, (result) => {
if (result.status === Office.AsyncResultStatus.Failed) {
console.log(result.error.message);
return;
}
console.log("Recipients added to the To field.");
});
Properties
display |
Gets the display name associated with an email address. |
email |
Gets the SMTP email address. |
Property Details
displayName
Gets the display name associated with an email address.
displayName: string;
Property Value
string
emailAddress
Gets the SMTP email address.
emailAddress: string;
Property Value
string