using System;
namespace System.Net.Mail
{
/// Specifies how email messages are delivered.
// Token: 0x02000149 RID: 329
public enum SmtpDeliveryMethod
{
/// Email is sent through the network to an SMTP server.
// Token: 0x04000B54 RID: 2900
Network,
/// Email is copied to the directory specified by the property for delivery by an external application.
// Token: 0x04000B55 RID: 2901
SpecifiedPickupDirectory,
/// Email is copied to the pickup directory used by a local Internet Information Services (IIS) for delivery.
// Token: 0x04000B56 RID: 2902
PickupDirectoryFromIis
}
}