Hey,
Can anyone tell me what this error means:
Mailbox unavailable. The server response was: 5.7.1 <recruitment@kidsunlimited.com>… Relaying denied. IP name lookup failed [89.187.101.76]
I am trying to send emails with this code:
MailMessage message = new MailMessage("recruitment@kidsunlimited.com", txt_email.Text);
message.Subject = "Your Apprenticeship application has been submitted.";
message.IsBodyHtml = true;
message.Body = "Thank you for applying for this role, we will review your application and get back to you as soon as possible.";
SmtpClient client = new SmtpClient("cust3512-1.in.mailcontrol.com");
client.Send(message);
But when i try sending i keep getting that error, any ideas?
Thanks