Language
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Configures mail sending options.
<mailSettings
<smtp> … </smtp>
/>
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
None.
Child Elements
| Attribute | Description |
|---|---|
smtp |
Configures Simple Mail Transport Protocol options. |
Parent Elements
| Element | Description |
|---|---|
Contains settings that specify how the .NET Framework connects to the network. |
Example
The following code example specifies the appropriate SMTP parameters to send e-mail using the default network credentials.
<configuration>
<system.net>
<mailSettings>
<smtp deliveryMethod="network">
<network
host="localhost"
port="25"
defaultCredentials="true"
/>
</smtp>
</mailSettings>
</system.net>
</configuration>