다른 버전의 생성자를 보았습니다. 하나는 web.config의 정보를 사용하고 하나는 호스트를 지정하고 다른 하나는 호스트와 포트를 지정합니다. 그러나 사용자 이름과 비밀번호를 web.config와 다른 것으로 어떻게 설정합니까? 일부 높은 보안 클라이언트가 내부 smtp를 차단하고 smtp 서버를 사용하려는 문제가 있습니다. web.config 대신 코드에서이를 수행하는 방법이 있습니까?
이 경우 데이터베이스에서 사용할 수없는 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());
}
}