Hi all
I have a normal canvas app with email sending screen. I would like to have a default email address set because there is always the same recepient and therefore it's no need to type anything. I keep getting error parameter To cannot be empty.
How could I get email address as default.
Set(
_emailRecipientString;
Concat(
MyPeople;
Mail & ";"
)
);;
Office365Outlook.SendEmailV2(
_emailRecipientString;
TextEmailMessage1.Text;
HtmlText2.HtmlText;
{
To: "email@testemail.com";
Importance: "Normal";
IsHtml: true
}
);;
BR
Matt