
Announcements
Hello,
i want to use some html-Code for my eMail from PowerApp. The Bodaytext can be Like this simple code:
<p>
<b>This is strong</b>
</p>
But if i use Launch("mailto".... it will open my normal Mailprogramm and i see exactly my html-Code in the Mailbody - not a bold Textline without the html-Tags. Why?
// Vorname, Nachname und Finanzierungsnummer im Vorlagetext ersetzen
Set(
TemplateContent;
Substitute(
Substitute(
Substitute(
SelectedContent;
"[Vorname]";
Vorname
);
"[Nachname]";
Nachname
);
"[Finanzierungsnummer]";
Finanzierungsnummer
)
);;
// Inhalt in das Textfeld kopieren
UpdateContext({ txt_MailText: TemplateContent });;
// Starten Sie die E-Mail-App des Benutzers, um die E-Mail zu verfassen
Launch("mailto:" & ToEmail & "?subject=" & SelectedSubject & "&body=" & TemplateContent);;
But if i use
// Sendefunktion an Outlook
Office365Outlook.SendEmailV2(
ToEmail;
SelectedSubject;
TemplateContent
);;
The hmtl-Code will automatically send the right way.
Hmm.. I have to use Launch("mailto.... how can i fix the problem mith the html_Code?
Thanks