Link to home
Start Free TrialLog in
Avatar of RaoSyndrome
RaoSyndrome

asked on

Mailbox unavailable. The server response was: 5.7.1 Unable to relay for

Mailbox unavailable. The server response was: 5.7.1 Unable to relay for
private void SendMAil()
    {
        NetworkCredential loginInfo = new NetworkCredential("info@syndromeindia.com", "troikainfo");
        MailMessage msg = new MailMessage();
        msg.From = new MailAddress("info@syndromeindia.com");
        msg.To.Add(new MailAddress("jr@syndromeindia.com"));
        msg.Subject = "Demo";
        msg.Body = "Code of vidya";
        msg.IsBodyHtml = true;
        SmtpClient client = new SmtpClient("syndromeindia.com");
        client.EnableSsl = false;
        client.UseDefaultCredentials = false;
        client.Credentials = loginInfo;
        client.Send(msg);
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of tomand
tomand
Flag of Czechia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial