Hi there,
I've built:
A PowerApps form that populates a sharepoint list
OnSuccess I would like to send an email to the "cooridinator" with the ID and Title from the form. I keep getting an error saying "Expected operator. Operators join to operands together"
I have no idea - I have just started using PowerApps. Here's the formula. Any help would be appreciated.
Office365Outlook.SendEmailV2 ("nsmtime3@gmail.com", "New Product Enhancement Request – ID”) ( & PEFormInput.LastSubmitID & “Title – “ & PEFormInput.LastSubmit.Title &, "A new product enhancement request has been received")
Thanks, Nic
Solved! Go to Solution.
@nic182 ,
The syntax is correct, although I noticed you have the wrong type of quotes in your post (did you edit this in Word?).
Also if this is OnSuccess of the Form
Office365Outlook.SendEmailV2(
"nsmtime3@gmail.com",
"New Product Enhancement Request – ID " & Self.LastSubmit.ID & " Title – " & Self.LastSubmit.Title,
"A new product enhancement request has been received"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
@nic182 ,
I think this is what you are trying to do
Office365Outlook.SendEmailV2(
"nsmtime3@gmail.com",
"New Product Enhancement Request – ID " & PEFormInput.LastSubmit.ID & " Title – " & PEFormInput.LastSubmit.Title,
"A new product enhancement request has been received"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @nic182 ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi,
Sorry, I only got to try it this morning.
I am getting the below error message when I try the new formula you suggested...
@nic182 ,
The syntax is correct, although I noticed you have the wrong type of quotes in your post (did you edit this in Word?).
Also if this is OnSuccess of the Form
Office365Outlook.SendEmailV2(
"nsmtime3@gmail.com",
"New Product Enhancement Request – ID " & Self.LastSubmit.ID & " Title – " & Self.LastSubmit.Title,
"A new product enhancement request has been received"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Thanks! Yes I did put it into word. I am guessing I should use Notepad for formulas? Thanks again. 🙂
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
205 | |
70 | |
51 | |
49 | |
20 |
User | Count |
---|---|
262 | |
120 | |
85 | |
80 | |
68 |