Does anyone know why parenthesis from a record don't work next to Char(10)? My below code will send the below email.
Office365Outlook.SendEmail(varUser.Email, "Stock Needed on " & Dropdown1.Selected.Value, Concat(StockTotal, "Stock Needed: " & Stock & Char(10) & "Stock Type: " & StockType & Char(10) & "Quantity Needed: " & TotalNeeded &Char(10)&Char(10)) &With({Comments: Comment.Text},"Comments: " & Comments)&Char(10)&Char(10)
Stock Needed: 7-Up
Stock Type: Beverages
Quantity Needed: 1
Stock Needed: Coffee Scoops (1 LG/ 1 SM) Stock Type: Galley Supplies Quantity Needed: 1
Stock Needed: Peanuts
Stock Type: Consumables
Quantity Needed: 2
Comments:
Solved! Go to Solution.
Hi @as733y ,
You are sending HTML - try the below
Office365Outlook.SendEmailV2(
varUser.Email,
"Stock Needed on " & Dropdown1.Selected.Value,
Concat(
StockTotal,
"Stock Needed: " & Stock & "<br>" &
"Stock Type: " & StockType & "<br>"
"Quantity Needed: " & TotalNeeded & "<br><br>" &
"Comments: " & Comment.Text & "<br><br>"
)
)
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 @as733y ,
You are sending HTML - try the below
Office365Outlook.SendEmailV2(
varUser.Email,
"Stock Needed on " & Dropdown1.Selected.Value,
Concat(
StockTotal,
"Stock Needed: " & Stock & "<br>" &
"Stock Type: " & StockType & "<br>"
"Quantity Needed: " & TotalNeeded & "<br><br>" &
"Comments: " & Comment.Text & "<br><br>"
)
)
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
User | Count |
---|---|
256 | |
108 | |
97 | |
51 | |
39 |