mailSettings, defaultCredentials setup in web.config

<configuration>
  <system.net>
    <mailSettings>
      <smtp from="[email protected]">
        <network host="mail.xxxxxx.com" port="25" password="password" userName="[email protected]" defaultCredentials="false"/>
      </smtp>
    </mailSettings>
  </system.net>
<configuration>
Note: Must set defaultCredentials to false, in order to use SMTP authentication.
If the UseDefaultCredentials property is set to false, then the value set in the Credentials property will be used for the credentials when connecting to the server. If the UseDefaultCredentials property is set to false and the Credentials property has not been set, then the mail is sent to the server anonymously.
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

SQL server- network related or instance-specific error happened while connection establishing

  Instance-specific or network related error happening while connecting to SQL server   Please...

OleDB connection string examples

OleDB connection string examples MS Access (Jet) "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA...

Do you allow custom COM components?

Do you allow custom COM components? We are not offering to install the custom COM components...

Error when accessing a WCF services

Error when accessing a WCF services Error when accessing a WCF service: "IIS specified...

How to cache static contents to client with UseMaxAge?

You can consider to caches static contents to the client with UseMaxAge if your website has too...

Powered by WHMCompleteSolution