I have a domain interpublicadvertising.com
When i send a mail from this account, result says sent with:
result.Status == SendMessageStatus.Success // as true
which means sent. But when i open my inbox, mail isnt delivered. when i use other accounts such as gmail. it delivers.
I have used breakpoints to track my code. code looks fine.
Note: I once faced this same issue before i started using this library (Mail.dll). I was able to fix the issue using
SmtpClient mailSmtpClient = new SmtpClient(smtp);
mailSmtpClient.UseDefaultCredentials = false; //this line
How can i do same using Mail.dll? How can i set DefaultCredentials to false.
I have tried:
builder.setDefault = false
Didnt work!!!