All
My working code for send email thru button is perfect working... I need to add option that its take PRINTSCREEN short of current BROWSER WINDOW and send this SCREEN Short by email. How its possible?
Thanks
Code:
protected void SubmitEmail_Click1(object sender, EventArgs e)
{
try
{
MailMessage mailMessage = new MailMessage();
mailMessage.To.Add("mail@company.com");
mailMessage.From = new MailAddress("mail@company.com");
mailMessage.Subject = "Aswaq Net Test";
mailMessage.Body = "Dear All, This is Test Email!";
SmtpClient smtpClient = new SmtpClient("172.16.41.31");
smtpClient.Send(mailMessage);
Response.Write("E-mail sent!");
}
catch (Exception ex)
{
Response.Write("Could not send the e-mai ...
Go to the complete details ...