SmtpClient.DeliveryMethod Property

Definition

Specifies how outgoing email messages will be handled.

public System.Net.Mail.SmtpDeliveryMethod DeliveryMethod { get; set; }

Property Value

An SmtpDeliveryMethod that indicates how email messages are delivered.

Remarks

Delivery methods include:

  • An SMTP server.

  • Moving the email into the pickup directory for IIS, which then delivers the message.

  • Moving the email to a directory specified by PickupDirectoryLocation for later delivery by another application.

The default value for this property can also be set in a machine or application configuration file. Any changes made to the PickupDirectoryLocation property override the configuration file settings.

Applies to

Produs Versiuni
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also