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 / Adding email to an exi...
Power Apps
Answered

Adding email to an existing formula

(0) ShareShare
ReportReport
Posted on by 26

Hello,

 

Currently I have started testing and even created an updated version of Service Desk App. However what I would like is that the second someone creates a new ticket it sends all IT staff an email notification of that new ticket.

 

Currently I have the following code on create ticket

 

If(IsBlank(Subject.Text) || IsBlank(Description.Text) ,UpdateContext({msg_visible:true}),SubmitForm(NewTicketForm);UpdateContext({New:Patch(Tickets,LookUp(Tickets,ID=Text(Max(Tickets,ID))),{Subject:Subject.Text,Description:Description.Text})}))

 

Is there a way to add something like the following?

 

Office365.SendEmail(
 DataCardValue12.Selected.Email, // To field
 "Text", // Subject Field
 "<b><font color=blue>HTML</font></b>text" // Body Field, this could also be HtmlText1.HtmlText 
 {IsHtml:true} // the record elements for other parameter 
 )

 

I am a real novice when it comes down to these things.

Capture.JPG
Categories:
I have the same question (0)
  • Verified answer
    timl Profile Picture
    37,287 Super User 2026 Season 2 on at

    Hi @GC87

    In theory, you should be able to add your call to the SendMail function after the calls to SubmitForm and Patch. The formula would look something like this:

     

     

    If(
     IsBlank(Subject.Text) || IsBlank(Description.Text),
     UpdateContext({msg_visible: true}),
     SubmitForm(NewTicketForm);
     UpdateContext(
     {
     New: Patch(
     Tickets,
     LookUp(
     Tickets,
     ID = Text(Max(Tickets,ID))
     ),
     {
     Subject: Subject.Text,
     Description: Description.Text
     }
     )
     }
     );
    Office365.SendEmail(
              DataCardValue12.Selected.Email, // To field
               "Text",                        //  Subject Field
               "<b><font color=blue>HTML</font></b>text"           // Body Field, this could also be HtmlText1.HtmlText     
               {IsHtml:true}                  // the record elements for other parameter          
        ) )

     

  • GC87 Profile Picture
    26 on at

    Thank you timl for the response I had another question if I wanted to specific the emails instead of DataCardValue12.Selected.Email do I just place the email addresses I want? Im not sure exactly how that portion works or do I need to create a flow for that value to know where it needs to go?

  • timl Profile Picture
    37,287 Super User 2026 Season 2 on at

    Hi @GC87

    Yes, you can just replace DataCardValue12.Selected.Email with your desired email address (enclosed within double quotes).

  • GC87 Profile Picture
    26 on at
    If(
     IsBlank(Subject.Text) || IsBlank(Description.Text),
     UpdateContext({msg_visible: true}),
     SubmitForm(NewTicketForm);
     UpdateContext(
     {
     New: Patch(
     Tickets,
     LookUp(
     Tickets,
     ID = Text(Max(Tickets,ID))
     ),
     {
     Subject: Subject.Text,
     Description: Description.Text
     }
     )
     }
     );
    Office365.SendEmail(
              "email1@company.com", "email2@company.com", "email3@company.com", // To field
               "Text",                        //  Subject Field
               "<b><font color=blue>HTML</font></b>text"           // Body Field, this could also be HtmlText1.HtmlText     
               {IsHtml:true}                  // the record elements for other parameter          
        ) )

    I have legit email addresses instead of email#@company.com

     

    This is what I have currently placed and so far it is giving me an error.

     

    Unexpected characters. The formula contains 'ParenClose' where 'CurlyOpen' is expected. This error occurs, if for example, a formula contains '{Val@7}' instead of '{Val:7}'. When you set a variable, the syntax requires a colon instead of an "at" symbol.

  • timl Profile Picture
    37,287 Super User 2026 Season 2 on at

    Can you try comma separating the email addresses into a single string to see if that works?

    "email1@company.com,email2@company.com,email3@company.com"

     

  • GC87 Profile Picture
    26 on at

    If(IsBlank(Subject.Text) || IsBlank(Description.Text) ,UpdateContext({msg_visible:true}),SubmitForm(NewTicketForm);UpdateContext({New:Patch(Tickets,LookUp(Tickets,ID=Text(Max(Tickets,ID))),{Subject:Subject.Text,Description:Description.Text})});
    Office365.SendEmail(
    "cramsey@antunovich.com, gcordova@antunovich.com, blane@antunovich.com", // To field
    "Text", // Subject Field
    "<b><font color=blue>HTML</font></b>text" // Body Field, this could also be HtmlText1.HtmlText
    {IsHtml:true} // the record elements for other parameter
    ))

     

     

    The areas highlighted in red are where errors are located. For some reason it has the an error with the semi colon after (new ticket form), not sure whats going on between SendEmail and the bracket, as well as infront of the curly bracket from IsHtml:True.

     

    If I remove the whole portion of the email my previous code works without any errors.

  • GC87 Profile Picture
    26 on at

    I just fixed the SendEmail and NewTicket Form errors. Apparently I forgot to place Outlook into the data source.....whoops. However I get {IsHtml:true} with an error, is this because for the curly brackets?

  • timl Profile Picture
    37,287 Super User 2026 Season 2 on at

    Perhaps you're just missing a comma after the previous line?

    "<b><font color=blue>HTML</font></b>text" ,
  • GC87 Profile Picture
    26 on at

    Thank you again timl looks like that did the trick. Going to test and see if I can get an email response. Thank you

  • timl Profile Picture
    37,287 Super User 2026 Season 2 on at

    Great, I'm glad that did the trick!

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 July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 356 Most Valuable Professional

#2
11manish Profile Picture

11manish 225 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 211

Last 30 days Overall leaderboard