My text box is named textbox1 and the value name is "text".
I get an error message - One or more parameter values are not valid.
Sub CommandButton1_Click
Dim strText
set strText = Item.UserProperties("TextBox1")
Item.To = "email@email.com"
Item.Subject = "This is the subject"
Item.Body = strText
Importance = 2 'High
End Sub
I get an error message - One or more parameter values are not valid.
Sub CommandButton1_Click
Dim strText
set strText = Item.UserProperties("TextBox1")
Item.To = "email@email.com"
Item.Subject = "This is the subject"
Item.Body = strText
Importance = 2 'High
End Sub