web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / How to add format to a...
Power Apps
Answered

How to add format to an email

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hi, 
I'm creating and an alert thta will show some fields that has been modified 

what can i do to add format(bolds, enter space):

I want that the email looks like this

Subject: Ticket de Edicion
Body: Se requiere editar los siguientes campos.
Turno cambiar por "   "

Dia/Noche cambiar por "   "

Linea cambiar por "   "

Operacion cambiar por "   "

ENN cambiar por "   "

Activo cambiar por "   "

Tipo de Falla cambiar por "   "

Responsable cambiar por "   "

PPS cambiar por "   "

 

This is the formula that i use

 

 

Office365Outlook.SendEmailV2(
"jose.pena04@metalsa.com",
"Ticket de Edicion",
"Se requiere editar los siguientes campos.
Tecnico cambiar por " & TextInput6_7.Text & " . . " & " Turno cambiar a " & TextInput6_4.Text & " . . " & " Dia/Noche cambiar a " & TextInput6_5.Text & " . . " & " Linea cambiar a " & TextInput6_6.Text & " . . " & " ENN cambiar a " & TextInput6_8.Text & " . . " & " Operacion cambiar a " & TextInput6_9.Text & " . . " & " Activo cambiar a " & TextInput6_10.Text & " . . " & " Tipo de Falla cambiar a " & TextInput6_11.Text & " . . " & " Responsable cambiar a " & TextInput6_16.Text & " . . " & " PPS cambiar a " & TextInput6_12.Text & " . . " & " Not Listed cambiar a " & TextInput6_13.Text,
{Importance: "High"}
);
PowerAppsNotification.SendPushNotification(
{
recipients: ["jose.pena04@metalsa.com"],
message: "El usuario " & User().Email & " solcita editar un registro de la Bitacora de Intervenciones, revisar el correo adjunto para mayor informacion ",
openApp: true
}
);

Categories:
I have the same question (0)
  • Verified answer
    CarlosFigueira Profile Picture
    Microsoft Employee on at

    You can use the function SendEmail (not the V2), as it has an option to define the body of the message as HTML. With that, you can use some HTML formatting in your message to make it look like you want. Something like the example below:

    Office365Outlook.SendEmail(
     "jose.pena04@metalsa.com",
     "Ticket de Edicion",
     Concatenate(
     "<p>Se requiere editar los siguientes campos.</p>",
     "<p><b>Tecnico</b> cambiar por ", TextInput6_7.Text, ".</p>",
     "<p><b>Turno</b> cambiar a ", TextInput6_4.Text, ".</p>",
     "<p><b>Dia/Noche</b> cambiar a ", TextInput6_5.Text, ".</p>",
     "<p><b>Linea</b> cambiar a ", TextInput6_6.Text, ".</p>",
     "<p><b>ENN</b> cambiar a ", TextInput6_8.Text, ".</p>",
     "<p><b>Operacion</b> cambiar a ", TextInput6_9.Text, ".</p>",
     "<p><b>Activo</b> cambiar a ", TextInput6_10.Text, ".</p>",
     "<p><b>Tipo de Falla</b> cambiar a ", TextInput6_11.Text, ".</p>",
     "<p><b>Responsable</b> cambiar a ", TextInput6_16.Text, ".</p>",
     "<p><b>PPS</b> cambiar a ", TextInput6_12.Text, ".</p>",
     "<p><b>Not Listed</b> cambiar a ", TextInput6_13.Text, ".</p>"
     ),
     { Importance: "High", IsHtml: true }
    )

    Hope this helps!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 325 Most Valuable Professional

#2
11manish Profile Picture

11manish 165

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 88 Super User 2026 Season 1

Last 30 days Overall leaderboard