SmtpMail.SmtpServer Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece el nombre del servidor de correo de retransmisión SMTP que se usará para enviar mensajes de correo electrónico. Alternativa recomendada: 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
Valor de propiedad
Nombre del servidor de retransmisión de correo electrónico.
Ejemplos
//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"
Comentarios
Si el servidor SMTP local (incluido con Windows 2000 y Windows Server 2003) está detrás de un firewall que bloquea cualquier tráfico SMTP directo (a través del puerto 25), deberá averiguar si hay un host inteligente disponible en la red que puede retransmitir mensajes SMTP a Internet.
Un host inteligente es un servidor SMTP con los permisos para retransmitir mensajes de correo electrónico salientes directamente a Internet desde servidores SMTP internos. Un host inteligente debe poder conectarse simultáneamente a la red interna e Internet para poder trabajar como puerta de enlace de correo electrónico.