3
votes

A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 67.69.240.69:25

    Dim smtpClient As New SmtpClient()
    Dim message As New MailMessage()
    Dim fromAddress As New MailAddress("[email protected]")
    smtpClient.Host = "smtp10.bellnet.ca"
    smtpClient.Credentials = New NetworkCredential("news", "1235!")

    smtpClient.Port = "25"
    message.From = fromAddress
    message.To.Add("[email protected]")
    message.Subject = "eyjeyjey afsdf"

    message.Body = "Hello from aaaaa"
    message.IsBodyHtml = True
    smtpClient.EnableSsl = True
    smtpClient.Send(message)
1

1 Answers

1
votes

Bell Canada blocks the default SMTP port of 25.

See this link for a partial list.