Everton1Blue
Technical User
Hello
My SMTP code includes:
I actually get an error with this line:
but that is not the purpose of this question.
The Web page asks the user, who has forgotten his password, for his email address only. There is no message field, so aren't the above references to 'message' redundant? On the other hand, if there is no 'message', as in
how is the user to receive the link sent to him to reset his password?
Many thanks.
My SMTP code includes:
Code:
Dim strEmailValue As String
Dim Message As String = "yourmessage"
'Request.Form - extract data from form field
Dim youremail As String = Request.Form("strEmailValue")
Dim yourmessage As String = Request.Form("your_message")
.........
myMessage.ReplyToList.Add(youremail) 'user's email
myMessage.Body = yourmessage
I actually get an error with this line:
Code:
myMessage.ReplyToList.Add(youremail) 'user's email
but that is not the purpose of this question.
The Web page asks the user, who has forgotten his password, for his email address only. There is no message field, so aren't the above references to 'message' redundant? On the other hand, if there is no 'message', as in
Code:
myMessage.Body = yourmessage
how is the user to receive the link sent to him to reset his password?
Many thanks.