SmtpMail.SmtpServer Proprietà

Definizione

Ottiene o imposta il nome del server della posta di inoltro SMTP da usare per l'invio di messaggi di posta elettronica. Alternativa consigliata: System.Net.Mail.

public:
 static property System::String ^ SmtpServer { System::String ^ get(); void set(System::String ^ value); };
public static string SmtpServer { get; set; }
static member SmtpServer : string with get, set
Public Shared Property SmtpServer As String

Valore della proprietà

Nome del server di inoltro di posta elettronica.

Esempio

//This example assigns the name of the mail relay server on the 
//local network to the SmtpServer property.
SmtpMail.SmtpServer = "RelayServer.Contoso.com";
' This example assigns the name of the mail relay server on the 
' local network to the SmtpServer property.
SmtpMail.SmtpServer = "RelayServer.Contoso.com"

Commenti

Se il server SMTP locale (incluso con Windows 2000 e Windows Server 2003) è dietro un firewall che blocca qualsiasi traffico SMTP diretto (tramite la porta 25), sarà necessario scoprire se esiste un host intelligente disponibile nella rete che consente di inviare messaggi SMTP a Internet.

Uno smart host è un server SMTP con le autorizzazioni per inviare messaggi di posta elettronica in uscita direttamente a Internet dai server SMTP interni. Uno smart host deve essere in grado di connettersi simultaneamente alla rete interna e a Internet per funzionare come gateway di posta elettronica.

Si applica a