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="[email protected]"> <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>[email protected]</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...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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="[email protected]">
<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>[email protected]</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...