Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 541 Bytes

File metadata and controls

32 lines (26 loc) · 541 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const forward = {
  message: {
    isDeliveryReceiptRequested: true,
    toRecipients: [
      {
        emailAddress: {
          address: 'danas@contoso.com',
          name: 'Dana Swope'
        }
      }
     ]
  },
  comment: 'Dana, just want to make sure you get this.'
};

await client.api('/me/messages/AAMkADA1MTAAAH5JaLAAA=/forward')
	.version('beta')
	.post(forward);