-2

I m working in Auto generation salary slip project.In this after calculating the salary i have to send the snap shot or the print of that page of the salary slip to employee mail_id on button click.

user1986144
  • 105
  • 1
  • 1
  • 9
user1999324
  • 48
  • 4
  • 10

1 Answers1

1

For Sending mail you will use the MailMessage class. Either you can send your snap shot by using .Attachements property of MailMessage class or you can send it in .Body property. For further detail please visit; http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.aspx

Codex
  • 78
  • 1
  • 2
  • 13