I am attempting to embed an image within the body of an email. The image is stored on SharePoint. I have tried both the approaches below. Both send the email, but the image isn't shown :-
Microsoft365Outlook.SendEmailV2(
User().Email,
"Test",
"<img scr='https://imagepathhere'><br>"&
"Test line",
{From: User().Email, IsHTML: true}
);
Microsoft365Outlook.SendEmailV2(
User().Email,
"Test",
"<img scr=""https://imagepathhere""><br>"&
"Test line",
{From: User().Email, IsHTML: true}
);