SORU
4 Mayıs 2010, Salı


Kullanıcı adı ve parola ayarlamak için ne kadar SmtpClient için nesne .NET?

Yapıcı farklı versiyonları görüyorum, web bilgi kullanır.yapılandırma, bir ana ve bir ana bilgisayar ve bağlantı noktası belirtir. Ama nasıl bir şey için kullanıcı adı ve parola web farklı ayarlarım.config? Bizim iç smtp bazıları yüksek güvenlik, istemciler tarafından engellenir ve kendi smtp sunucusu kullanmak istiyoruz sorunu var, orada web yerine kodundan bunu yapmak için bir yoldur.config?

Bu durumda nasıl web kullanırım.config kimlik bilgileri eğer hiçbiri veritabanından varsa, örneğin?

public static void CreateTestMessage1(string server, int port)
{
    string to = "jane@contoso.com";
    string from = "ben@contoso.com";
    string subject = "Using the new SMTP client.";
    string body = @"Using this new feature, you can send an e-mail message from an application very easily.";
    MailMessage message = new MailMessage(from, to, subject, body);
    SmtpClient client = new SmtpClient(server, port);
    // Credentials are necessary if the server requires the client 
    // to authenticate before it will send e-mail on the client's behalf.
    client.Credentials = CredentialCache.DefaultNetworkCredentials;

    try {
        client.Send(message);
    }
    catch (Exception ex) {
        Console.WriteLine("Exception caught in CreateTestMessage1(): {0}", 
                    ex.ToString());
    }              
}

CEVAP
4 Mayıs 2010, Salı


SmtpClient kod tarafından kullanılabilir:

SmtpClient mailer = new SmtpClient();
mailer.Host = "mail.youroutgoingsmtpserver.com";
mailer.Credentials = new System.Net.NetworkCredential("yourusername", "yourpassword");

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Living Waters

    Living Water

    9 AĞUSTOS 2006
  • The Warp Zone

    The Warp Zon

    24 AĞUSTOS 2007
  • TurkishRoyal

    TurkishRoyal

    16 Ocak 2007