I have created a contour form that, as part of the workflow, sends a feedback email to the user and also to the site owner.
Howver, I seem to be having trouble sending a message to one particular email address. This happens to be the same email address that is set as the 'outgoing' email address for umbraco?
Yeah other addresses seem to work fine. I also know that the email account in question appears to be able to send and receive mail. The umbraco site has also just been moved to a new server and this mail account receieved messages from contour in the past.
yeah but since it is set to 127.0.0.1 it is using the current server so moving to another server makes it use the smtp on that specific one, so it might be a setting on the new server that is causing the behavior
Email issue - contour
I have created a contour form that, as part of the workflow, sends a feedback email to the user and also to the site owner.
Howver, I seem to be having trouble sending a message to one particular email address. This happens to be the same email address that is set as the 'outgoing' email address for umbraco?
Has anyone else had an issue like this?
Comment author was deleted
And other addresses work fine? Might be a setting on the mailserver or something like that don't think Contour would prevent it from being mailed...
Yeah other addresses seem to work fine. I also know that the email account in question appears to be able to send and receive mail. The umbraco site has also just been moved to a new server and this mail account receieved messages from contour in the past.
Comment author was deleted
When moving to a new server did the smtp server also change?
I've checked my web.config file and the settings appear to be set as the default
<system.net>
<mailSettings>
<smtp>
<network host="127.0.0.1" userName="username" password="password" />
</smtp>
</mailSettings>
</system.net>
I did not change these settings when the site was moved.
Comment author was deleted
yeah but since it is set to 127.0.0.1 it is using the current server so moving to another server makes it use the smtp on that specific one, so it might be a setting on the new server that is causing the behavior
is working on a reply...