Hello,
Finally they provided me databases of 2005 types and I tested it, it was working.
But now I am trying to set the email account of type
info@<domain name>
However in web.config file I have been using my gmail account for email purpose, like this
Code:
<appSettings>
<add key="MailFromAddress" value="me@myprovider.com"/>
<add key="MailToAddress" value="me@myprovider.com"/>
</appSettings>
And
Code:
<smtp from="Jack <me@provider.com>" deliveryMethod="Network">
<network host="smtp.gmail.com" userName="me" password="<password>" port="587"/>
</smtp>
And it works fine in production environment also but when I replace it with email Id like
info@<domain name> and relative info (password and smtp server) then I do not receive any email.
They provided me information
POP server: pop32r.cp.365techsupport.com (incoming server)
IMAP server: imap3r.cp.365techsupport.com (incoming server)
SMTP server: smtp1r.cp.365techsupport.com (outgoing server)
Sir, how I can set up emails with so many servers????
Thank you.