Hello,
How to add outlook signature using Office365Outlook.SendEmailV2 ?
Thank you!
// Retrieve user's profile including email signature
Set(
userProfile,
Office365Users.MyProfile()
);
// Send email with signature
Office365Outlook.SendEmailV2(
"recipient@example.com",
"Subject",
"",
"",
{
Body: "This is the email body.",
BodyType: "HTML",
Signature: userProfile.jobTitle & "<br>" & userProfile.officeLocation & "<br>" & userProfile.department & "<br>" & userProfile.mobilePhone & "<br>" & userProfile.businessPhones & "<br>" & userProfile.mail
}
)
Just in case my answer helped you solve your problem, please mark/accept this as a SOLUTION. This helps community members if they experience a similar issue in the future. |
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.