Search results for query: *

  • Users: keymaker
  • Content: Threads
  • Order by date
  1. K

    Sending confirmation email to user

    Hello I am aiming to use Microsoft's AspNet Identity template to send an email confirmation link to a newly registered user. This is the code I have in my register_test.aspx.vb file: Protected Sub CreateUser_Click(sender As Object, e As EventArgs) Dim userName As String = Email.Text...
  2. K

    Why page not launching

    Hello My 'forgotten password' page does not send any email to the user which would otherwise contain a link to reset the password. When the link is clicked, a new page, newPassword.aspx, should be displayed for the user to reset the password. I am trying to identify why the email is not being...
  3. K

    CC not working in SMTP code

    Hello In the following code, the Webmaster receives the sender's email, but his assistant, who should be copied in (CC) does not. Instead, what is happening is that the person who should be copied in, well his email address appears under CC in the Webmaster's inbox, but he does not receive the...
  4. K

    Authentication is required for relay - error

    Hello When I complete my forgot.aspx field here http://www.dimadayoub.net/forgot.aspx I get the following error: I know that this error usually relates to SMTP credentials (email and password) and the name of the SMTP host, but I am assured by my Web hosting service that I have them all...
  5. K

    Question Incorrect hyperlink in send emails as HTML

    Hello In my vb.net code which allows for SMTP to send emails as HTML, the user sees something like this in their email inbox: I can't quite understand why the Hello+emailaddress is a) joined together as one word and b) a hyperlink. The word 'Hello' should be followed by a space and then the...
  6. K

    How to redirect the site visitor?

    Hello I have the following in my aspx.vb file (it's a new user registration form on a Web site): Protected Sub CreateUser_Click(ByVal sender As Object, ByVal e As System.EventArgs) Using conn As OleDbConnection = New...
Back
Top