Can anyone give me some idea why this error show when opening "SMTP E-Mail" on IIS 10 ?
Error: Unrecognized attribute ‘enableSsl’.
Below in what is in the webconfig file and the app runs on .Net 4.0 IIS.
<configuration>
<system.net>
<mailSettings>
<smtp from="from">
<network host="host" port="587" enableSsl="true" userName="userName" password="PassWord" defaultCredentials="false"/>
</smtp>
</mailSettings>
</system.net>
</configuration>