Does LimiLabs Mail.dll work with authentificated an unauthentificated SMTP-Relay?
You can choose to authenticate or not:
using(Smtp smtp = new Smtp()) { smtp.ConnectSSL("smtp.server.com"); // Remove comment to use authentication // smtp.UseBestLogin("user", "password"); smtp.SendMessage(email); smtp.Close(); }