-4

please guide me what to write in web config file in c# for email sending.

  <system.net>
<mailSettings>
  <smtp from="yourdomain.com">

  </smtp>
</mailSettings
  • 1
    Did you have a look at [this](http://stackoverflow.com/questions/15068611/how-to-send-an-email-from-my-c-sharp-codebehind-getting-system-net-mail-smtpfa) page? – Jeroen Heier Jun 01 '16 at 20:01

1 Answers1

1
<configuration>
  <system.net>
    <mailSettings>
      <smtp deliveryMethod="network">
        <network
          host="localhost"
          port="25"
          defaultCredentials="true"
        />
      </smtp>
    </mailSettings>
  </system.net>
</configuration>

from: https://msdn.microsoft.com/en-us/library/w355a94k(v=vs.110).aspx

virth
  • 66
  • 7