Heay!
I am bulding an app to users to click in checkboxes and comboboxes, then when submit i use the Office365Outlook.SendEmailV2-function to get a summery of the information.
Everything looks fine BUT a random true appears in the bottom of the e-mail and i can not figure out why.
Bellow is my code for the submit button - or should I looke somewhere else than in the code?
Thank you in advance!
Office365Outlook.SendEmailV2("mymail@mail.com",
"Ny medarbetare och hårdvara " & TextInput1_3.Text & " " & TextInput2_3.Text,
"<b>Förnamn:</b> " & TextInput1_3.Text & "<br/>" &
"<b>Efternamn:</b> " & TextInput2_3.Text & "<br/>" &
"<b>Telefonnummer:</b> " & TextInput4_3.Text & "<br/>" &
"<b>E-post:</b> " & TextInput5_2.Text & "<br/>" &
"<b>Startdatum:</b> " & Text(DatePicker1_2.SelectedDate) & "
<br/>" &
"<b>Övrig information:</b> " & TextInput3_3.Text & "<br/>" &
"<br/>" &
"<b>Dator:</b> " & Text(ComboBox2_2.Selected.Value) & "<br/>" &
"<b>Telefon:</b> " & Text(ComboBox2_4.Selected.Value) & "<br/>" &
"<b>Leveransadress för hårdvara:</b> " & TextInput3_4.Text & "
<br/>" &
"<b>Övrig information:</b> " & TextInput9_1.Text & "<br/>" &
"<br/>" &
"<b>Tillbehör</b>" & "<br/>" &
"<b>iPhone Headset in-ear:</b> " & If(Checkbox3_7.Value,"true") & "<br/>" &
"<b>Android Headset in-ear:</b> " & If(Checkbox3_6.Value, "true") & "<br/>" &
"<b>Headset on-ear:</b> " & If(Checkbox3_3.Value,"true") & "<br/>" &
"<b>Tangentbord och mus:</b> " & If(Checkbox3_9.Value,"true") & "<br/>" &
"<b>Dockningsstation till laptop:</b> " & If(Checkbox3_8.Value,"true") & "<br/>" &
"<br/>" &
"<br/>" &
Navigate(thankyou))