Vedo diverse versioni del costruttore, una utilizza le informazioni da web.config, una specifica l'host e una l'host e la porta. Ma come posso impostare nome utente e password su qualcosa di diverso da web.config? Abbiamo il problema in cui il nostro smtp interno è bloccato da alcuni client ad alta sicurezza e vogliamo usare il loro server smtp, c'è un modo per farlo dal codice anziché da web.config?
In questo caso, come utilizzerei le credenziali web.config se nessuna è disponibile dal database, ad esempio?
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());
}
}