Send emails via are secured email server provider (Zoho)
Email service a re provided by Zoho.
For there email server to accept incoming emails the require certain credentials.
host smtp.zoho.com
username
password
port 465
SSL enabled
there also have informed me that my emails are not encrypted with a Cipher. Please make sure you are using proper SSL encryption with valid Cipher keys (AESCBC/AESGCM 256/128 bit keys).
Im using System.Net.Mail.SmtpClient for sending my emails (I suspect umbraco uses somehing similar.
the code above works perfectly on my local system if I use port 587. Not there is a lot of posts on zoho cares indicating that 587 is works but 465 dosent.
If I run it on my live system hosted with godaddy the email send fails.
This has other ramifications as well as if you forget your password umbraco fails to send a reset email out.
Send emails via are secured email server provider (Zoho)
Email service a re provided by Zoho.
For there email server to accept incoming emails the require certain credentials.
host smtp.zoho.com username password port 465 SSL enabled
there also have informed me that my emails are not encrypted with a Cipher. Please make sure you are using proper SSL encryption with valid Cipher keys (AESCBC/AESGCM 256/128 bit keys).
Im using System.Net.Mail.SmtpClient for sending my emails (I suspect umbraco uses somehing similar.
From what I have read System.net.mail doesnt support but doesn't support Implicit SSL - Note sure if this is my issue or not https://stackoverflow.com/questions/1011245/how-can-i-send-emails-through-ssl-smtp-with-the-net-framework
the code above works perfectly on my local system if I use port 587. Not there is a lot of posts on zoho cares indicating that 587 is works but 465 dosent.
If I run it on my live system hosted with godaddy the email send fails.
This has other ramifications as well as if you forget your password umbraco fails to send a reset email out.
Has anybody got any surgestions.
So using the System.Web.Mail example in this link https://stackoverflow.com/questions/1011245/how-can-i-send-emails-through-ssl-smtp-with-the-net-framework solved my email issues but has not solved the umbraco forgot password login issue.
is working on a reply...