Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Umbraco 4.7.1Email host: Microsoft Exchange 365
When I setup notifications in umbraco the emails are not being sent. My email host uses SSL. Any thoughts to why this would not work?
Thanks.
Hi Chris
check your smtp settings for me the below code works fine
<system.net> <mailSettings> <smtp from="xxx.yyyy@turning-point.co.uk"> <network host="a.b.c.d" userName="user..." password="password.." /> </smtp> </mailSettings> </system.net>
Adi,
My mail setting are fine. I'm using Contour and other custom controls that send emails and they all work great.
Any other thoughts?
Hi Chris.
Is your "config/umbracoSettings.Config" file with your sending address?
<notifications> <email>youremail@domain.com</email></notifications>
Fernando,
Yes, I already have my email address specified there.
Amazing that nobody sees "SSL" being mentioned in your post... :)
Probable solution: Add enableSsl="true" to your "network" config element. Like so:
<network host="myhost.mydomain.com" enableSsl="true" userName="me" password="myPassword" />
There is also a "port" attribute you can add if the server doesn't use the standard TCP port (often happens on cloud servers).
Further reading:
http://msdn.microsoft.com/en-us/library/ms164242.aspx
Peter,
You are right, I just tried that and it worked.
Thanks!
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Notifications don't send emails using Microsoft 365
Umbraco 4.7.1
Email host: Microsoft Exchange 365
When I setup notifications in umbraco the emails are not being sent. My email host uses SSL. Any thoughts to why this would not work?
Thanks.
Hi Chris
check your smtp settings for me the below code works fine
<system.net>
<mailSettings>
<smtp from="xxx.yyyy@turning-point.co.uk">
<network host="a.b.c.d" userName="user..." password="password.." />
</smtp>
</mailSettings>
</system.net>
Adi,
My mail setting are fine. I'm using Contour and other custom controls that send emails and they all work great.
Any other thoughts?
Thanks.
Hi Chris.
Is your "config/umbracoSettings.Config" file with your sending address?
<notifications>
<email>youremail@domain.com</email>
</notifications>
Fernando,
Yes, I already have my email address specified there.
Amazing that nobody sees "SSL" being mentioned in your post... :)
Probable solution: Add enableSsl="true" to your "network" config element. Like so:
<network host="myhost.mydomain.com" enableSsl="true" userName="me" password="myPassword" />
There is also a "port" attribute you can add if the server doesn't use the standard TCP port (often happens on cloud servers).
Further reading:
http://msdn.microsoft.com/en-us/library/ms164242.aspx
Peter,
You are right, I just tried that and it worked.
Thanks!
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.