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 / Empty HTML body with S...
Power Apps
Answered

Empty HTML body with SMTP connector

(0) ShareShare
ReportReport
Posted on by

Hi Guys,

 

I have a problem with HtmlText in SMTP Email connector (V3) : My app is supposed to send emails when a form is submited.

I am using an HtmlText box to generate the boddy of this email.

When I am testing the app in preview it is working like a charm, but if I am "Playing" the app (not in the "edit preview mode"), the email sent is empty (it shows "enter your HTML text here.") as if my Html text box was empty ...

 

 

 

OnSuccess : SMTP.SendEmailV3(
{
From: "Awesome@mailaddress.com";
To: "Awesome2@mailaddress.com";
Subject: MailReservationTObject.Text;
Body: MailReservationT1Body.HtmlText
}
);;
SMTP.SendEmailV3(
{
From: "Awesome@mailaddress.com";
To: User().Email;
Subject: MailConfirmationUserTObject.Text;
Body: MailConfirmationUserTBody.HtmlText
}
);;
Navigate(EcranDeValidation;ScreenTransition.Cover)

Categories:
  • Verified answer
    v-bofeng-msft Profile Picture
    Microsoft Employee on at

    Hi @RobinSmrkolj ,

     

    The point is that after you submit your form the controls in the form will be reset. Then you will get the default value of MailConfirmationUserTBody .

     

    You could try:

    1\Set MailConfirmationUserTBody 's OnChange property to:

    Set(HTMLValue,self.HtmlText)

    2\OnSuccess : 

    SMTP.SendEmailV3(
    {
    From: "Awesome@mailaddress.com";
    To: "Awesome2@mailaddress.com";
    Subject: MailReservationTObject.Text;
    Body: HTMLValue
    }
    );;
    SMTP.SendEmailV3(
    {
    From: "Awesome@mailaddress.com";
    To: User().Email;
    Subject: MailConfirmationUserTObject.Text;
    Body: HTMLValue
    }
    );;
    Navigate(EcranDeValidation;ScreenTransition.Cover)

    Best Regards,

    Bof

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

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 405 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 368

#3
WarrenBelz Profile Picture

WarrenBelz 244 Most Valuable Professional

Last 30 days Overall leaderboard