i am creating an email helper that sends out emails, this is working fine and all but i need to pass through the current users username and password.
Is there any way to accomplish this?
I have used Environment.UserName; and this gets the username correctly but i do not know how to get the password.
Here is what i am doing for the email helper.
public void SendEmail(int port, string host, string displayName, string subject, string body, string addressFrom, string addressTo, string password, string username)
{
MailMessage messageToSend = new MailMessage();
messageToSend .Subject = subject;
messageToSend .Body = body;
messageToSend .From = new MailAddress(addressFrom, displayName);
messageToSend .To.Add(addressTo);
messageToSend .Priority = MailPriority.High;
messageToSend .IsBodyHtml = true;
SmtpClient SMTPclient = new SmtpClient(Host, Port);
SMTPclient .EnableSsl = false;
SMTPclient.Credentials = new NetworkCredential(Username, Password);
SMTPclient.Send(message);
}
Please assist! Urgent help needed.
Kind regards and thanks in advance.
new NetworkCredential(Username, Password)and the method parametersstring password, string usernamewith lower case. Is that a typo? – mazzucci Feb 22 at 9:47