Zdravím, mám problém s aplikací pro odesílání emailů. Ve chvíli odesílání vyskočí chyba: "No connection could be made because the target machine actively refused it [::1]:25"
MailMessage message = new MailMessage(new MailAddress(this.EmailTextBox.Text, this.NameTextBox.Text), new MailAddress(this.Recipient));
message.Subject = this.SubjectTextBox.Text;
message.Body = this.ContentTextBox.Text;
SmtpClient smtp = new SmtpClient("localhost", 25);
smtp.Credentials = new System.Net.NetworkCredential("", "");
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.Send(message);
|