HI all,
I'm creating a simple apps to send email, using command like below:
Office365Outlook.SendEmail(txtEmail.Text,
"Consent email", "Dear, " & txtName.Text, {
Attachments:Table(
{Name:"peninput.jpg", ContentBytes:Signature.Image, '@odata.type':""}
)
})
txtEmail is a textbox input, which in this email, I have attachment, from a TextInput control.
However everytime I run this apps, I received Undeliverable email from Microsoft Outlook like this :

Anything's wrong with my command ? The connection to Outlook (datasource) with the correct login has been established, and no error while checking. Kindly advice.
Thanks,