Hello,
I have an email set up to send on button push. I use the 0365 connector to do so. Here is my set up:
Office365Outlook.SendEmailV2(
User().Email,
Text(DataCardValue3.Text) & ": Proposal Request has been submitted successfully",
EmailBodyhtml.HtmlText,
{Cc: "xxxx@yyy.com"}
)
When the emails come through they are sent "Low Importance". Can I change that?
Solved! Go to Solution.
Hi @slan2018 ,
Do you want to send an email in High level?
Based on the needs that you mentioned, I think the Importance property could achieve your needs. Please consider modify your formula as below:
Office365Outlook.SendEmailV2(
User().Email,
Text(DataCardValue3.Text) & ": Proposal Request has been submitted successfully",
EmailBodyhtml.HtmlText,
{
Cc: "xxxx@yyy.com",
Importance: "High" // Specify Importance property here
}
)
Note: Importance property has three available values -- "Normal", "Low", "High".
Best regards,
Hi @slan2018 ,
Do you want to send an email in High level?
Based on the needs that you mentioned, I think the Importance property could achieve your needs. Please consider modify your formula as below:
Office365Outlook.SendEmailV2(
User().Email,
Text(DataCardValue3.Text) & ": Proposal Request has been submitted successfully",
EmailBodyhtml.HtmlText,
{
Cc: "xxxx@yyy.com",
Importance: "High" // Specify Importance property here
}
)
Note: Importance property has three available values -- "Normal", "Low", "High".
Best regards,
User | Count |
---|---|
161 | |
86 | |
68 | |
63 | |
61 |
User | Count |
---|---|
212 | |
146 | |
92 | |
81 | |
68 |