I know there are a lot of threads on this forum around this but none have helped or solved my issue.
My issue is pretty simple, and that is my YAF can't send emails...so no registration confirmations, no emails to user groups..not even using the SMTP Test in the install pages.
So, in my app.config file I have:
<appSettings>
//
//
//
<add key="YAF.UseSMTPSSL" value="true" />
//
//
</appSettings>
In my mail.config I have:
<smtp deliveryMethod="Network" from="noreply@domain.co.uk">
<!-- Uncomment to specify SMTP settings -->
<network host="smtp.zoho.com" port="465" password="password" userName="noreply@domain.co.uk" />
</smtp>
If I try to send a registration confirmation, a test email or even a Mail (SMTP) Sending Test it all fails, nothing, nada.
The details I am using (password, host, port etc) are all correct, I know this because I have used the same details when setting up the POP3/SMTP to link the mailbox to my phone, it works.
Checking YAF logs and it says this:
SendMailThread Failed for the 2nd time (the email will now deleted) with an SmtpException (Email to: info@domain.co.uk, Subject: Test): System.Net.Mail.SmtpException: The operation has timed out. at System.Net.Mail.SmtpClient.Send(MailMessage message) at YAF.Core.Services.YafSendMail.SendAll(IEnumerable`1 messages, Action`2 handleException)
The Mail (SMTP) Sending Test times out as well.
I am running the latest version of YAF (2.1.2) and have restarted the app (using the admin menus within YAF).
I'm close to whits end!
Any help would be great.