Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 577 Bytes

File metadata and controls

31 lines (25 loc) · 577 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const message = {
  message: {
    isDeliveryReceiptRequested: true,
    toRecipients: [
      {
        emailAddress: {
          address: 'danas@contoso.com',
          name: 'Dana Swope'
        }
      }
     ]
  },
  comment: 'Dana, just want to make sure you get this; you\'ll need this if the project gets approved.'
};

await client.api('/me/messages/AAMkADA1MTAAAH5JaLAAA=/createForward')
	.post(message);