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 / Sending email with bla...
Power Apps
Answered

Sending email with blank cc textinput

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

I have a button which sends emails and I want to give the user the option to input email addresses to be cc-ed.

 

My cc input boxes are TextInput1, TextInput1_1 and TextInput1_2. Onselect I have: 

 

Cc: TextInput1.Text && TextInput1_1.Text && TextInput1_2.Text

 

which it doesn't like if the textinputs are blank.

 

Any way I can get round this?

 

Thank you in advance.

Categories:
  • Verified answer
    Sundeep_Malik Profile Picture
    6,501 on at

    Hey @Anonymous 

     

    You can use concatenate function with addition to if condition to resolve your issue.

     

    You can write a similar formula like below:

     

    Office365Outlook.SendEmail(
    Label5.Text,
    "Subject",
    "Body",
    {
    IsHtml: true,
    Cc: Concatenate(
    If(!IsBlank(Label2.Text), Label2.Text & ";", ""),
    If(!IsBlank(Label3.Text), Label3.Text & ";", ""),
    If(!IsBlank(Label4.Text), Label4.Text, "")
    )
    }
    )

     

    I hope this helps 🙂

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Amazing - that's done the trick! Thanks!

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
11manish Profile Picture

11manish 409 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 328

#3
WarrenBelz Profile Picture

WarrenBelz 252 Most Valuable Professional

Last 30 days Overall leaderboard