Link to home
Start Free TrialLog in
Avatar of senprog
senprog

asked on

Include Digital Signature While Sending Email

Hi,
I want to send email in my web application using digital signature. How could i implement the digital signature information in the following code.

SmtpMail.SmtpServer = strSmtpServer;
MailMessage objMail = new MailMessage();
      
strEmailAddress = email@email.com
objMail.From = txtemail.Text.Trim();
objMail.To = strEmailAddress;
objMail.Subject = "Kontakt os";
objMail.Cc = txtemail.Text.ToString().Trim();
objMail.Body = txtcomments.Text.Trim() ;
SmtpMail.Send(objMail);

Could anyone help me out in bringing the solution.

thanks in advance
Senthil
ASKER CERTIFIED SOLUTION
Avatar of DotNetLover_Baan
DotNetLover_Baan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial