मैं निर्माता के विभिन्न संस्करणों को देखता हूं, एक वेब से जानकारी का उपयोग करता है ।config, एक होस्ट निर्दिष्ट करता है, और एक होस्ट और पोर्ट। लेकिन मैं उपयोगकर्ता नाम और पासवर्ड को web.config से अलग कैसे सेट करूं? हमारे पास ऐसा मुद्दा है जहां हमारे आंतरिक smtp को कुछ उच्च सुरक्षा ग्राहकों द्वारा अवरुद्ध किया गया है और हम उनके smtp सर्वर का उपयोग करना चाहते हैं, क्या web.config के बजाय कोड से ऐसा करने का कोई तरीका है?
इस मामले में, उदाहरण के लिए, यदि कोई भी डेटाबेस से उपलब्ध नहीं है, तो मैं वेब का उपयोग कैसे करूंगा।
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());
}
}