Server error with aspnetemail

Discussion in 'Visual Studio' started by TonyMast, Nov 19, 2004.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I'm using the trial version of aspnetemail and aspnetpop3.
    below is the error I'm recieveing and the code I'm using (example from advanced intellect)

    503 auth not available (#5.3.3) (Missing Reply Code'334') [Additional Help:The mail server does not support authentication code 334. You may want to change the SmtpAuthentication value.]



    Dim msg As New aspNetEmail.EmailMessage()


    msg.Server = "mail.teramall.com"


    msg.Username = "[email protected]"


    msg.Password = "password check 25 times to make sure and tested"


    msg.FromAddress = "[email protected]"


    msg.To = "[email protected]"


    msg.Subject = "Test Email"


    msg.Body = "This is a test email."


    If msg.Send() Then


    Response.Write("Message Sent.")


    Else


    Response.Write(("The following error occurred: " + msg.LastException().Message))


    End If





    Thanks


    Tony





    Thank you
    Tony
     
  2. Bruce

    Bruce DiscountASP.NET Staff

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page