Hi all,
I need to include Subject as one of the EditForm field ( which is a drop Down), Date fiels ( Which is a dateControl) and Subject as one of the datacards.
I have the following, but cannot add datafields:
Office365Outlook.SendEmail("me@myself.com"," Hello" ,"Hello2") This works fine
But Office365Outlook.SendEmail("me@myself.com",DataCardValue11.selected ,DataCardValue12.Text)
is not working.
Any help please.
Thanks
Solved! Go to Solution.
Hi @K369 ,
You need
Office365Outlook.SendEmailV2(
"me@myself.com",
DataCardValue11.Selected.xxxx,
DataCardValue12.SelectedDate
)
xxxx will depend on the Items of the drop-down - I have a blog on Controls and their references which should assist (in both of these)
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.
Greetings WarrenBelz
Thank you for solution. It works perfectly.
Only one question:
If I want to add multiple inputs then what do I do. Example:
So ( ) && ( ) It gives errors
Office365Outlook.SendEmailV2(
"me@myself.com","New Email From me",
DataCardValue11.Selected.Value&&DataCardValue12.SelectedDate
)
Hi @K369 ,
Use
Office365Outlook.SendEmailV2(
"me@myself.com" & ";" & "New Email From me",
DataCardValue11.Selected.Value,
DataCardValue12.SelectedDate
)
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.
Hi @K369 ,
You need
Office365Outlook.SendEmailV2(
"me@myself.com",
DataCardValue11.Selected.xxxx,
DataCardValue12.SelectedDate
)
xxxx will depend on the Items of the drop-down - I have a blog on Controls and their references which should assist (in both of these)
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.
Greetings WarrenBelz
Thank you for solution. It works perfectly.
Only one question:
If I want to add multiple inputs then what do I do. Example:
So ( ) && ( ) It gives errors
Office365Outlook.SendEmailV2(
"me@myself.com","New Email From me",
DataCardValue11.Selected.Value&&DataCardValue12.SelectedDate
)
Hi @K369 ,
Use
Office365Outlook.SendEmailV2(
"me@myself.com" & ";" & "New Email From me",
DataCardValue11.Selected.Value,
DataCardValue12.SelectedDate
)
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.
User | Count |
---|---|
262 | |
110 | |
98 | |
54 | |
39 |