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
I recently upgraded to 4.0.2.1 and so far everything seems to work.
however I cannot get notifications to work, email does not get sent or show up in the queue
smtp service are running, I can send a message using an old asp (cdonts.dll) form from a standard html page
but umbraco will not send. I have tried a few combinations in web.config such as :
<system.net> <mailSettings> <smtp from="[email protected]"> <network host="127.0.0.1" port="25" /> </smtp> </mailSettings> </system.net> <system.net>
nothing seems to work.
can I use the older umbracoSmtpServer?
This is the only thing that is holding me up from upgrading.
otherwise I suppose I will stay with 3.0.6
sorry seems I cannot edit my own post on this forum to get rid of wierd formatting
Its possible that your mailserver needs verification.
You could try to provide username password:
<system.net>
<mailSettings>
<smtp>
<network host="mailserver" userName="username" password="password" />
</smtp>
</mailSettings>
</system.net>
I tried username/password as well but no go (smtp virtual server is set for anonymous anyway)
Finally found that the below works ("Network" also appears case sensitive)
<system.net> <mailSettings> <smtp deliveryMethod="Network" from="[email protected]"> <network host="web2" port="25"/> </smtp> </mailSettings> </system.net>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
mailsettings
I recently upgraded to 4.0.2.1 and so far everything seems to work.
however I cannot get notifications to work, email does not get sent or show up in the queue
smtp service are running, I can send a message using an old asp (cdonts.dll) form from a standard html page
but umbraco will not send. I have tried a few combinations in web.config such as :
<system.net>
<mailSettings>
<smtp from="[email protected]">
<network host="127.0.0.1" port="25" />
</smtp>
</mailSettings>
</system.net> <system.net>
nothing seems to work.
can I use the older umbracoSmtpServer?
This is the only thing that is holding me up from upgrading.
otherwise I suppose I will stay with 3.0.6
sorry seems I cannot edit my own post on this forum to get rid of wierd formatting
Its possible that your mailserver needs verification.
You could try to provide username password:
I tried username/password as well but no go (smtp virtual server is set for anonymous anyway)
Finally found that the below works ("Network" also appears case sensitive)
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="[email protected]">
<network host="web2" port="25"/>
</smtp>
</mailSettings>
</system.net>
is working on a reply...