protected void SendMessage(object o, EventArgs e) { var sb = new StringBuilder(); sb.Append("First Name: "); sb.Append(name.Text); sb.Append("<br /><br />Email Adress: "); sb.Append(email.Text); sb.Append("<br /><br />Message: "); sb.Append(message.Text); try { HelperUtils.SendEmail(ConfigurationManager.AppSettings["MessageRecipients"], "*****@*****.**", "", "*****@*****.**", "Online Quote Request", sb.ToString(), false); name.Text = ""; email.Text = ""; message.Text = ""; } catch (Exception ex) { //lblMessage.Text = "We're sorry but your online request cannot be processed right now. Try again or call during business hours. Thank you!"; } }
protected void FreeEstimateClicked(object o, EventArgs e) { var sb = new StringBuilder(); sb.Append("First Name: "); sb.Append(tbFirstName.Text); sb.Append("<br /><br />Last Name: "); sb.Append(tbLastName.Text); sb.Append("<br /><br />Email: "); sb.Append(tbEmail.Text); sb.Append("<br /><br />Message: "); sb.Append(tbDescription.Text); sb.Append("<br /><br />Phone: "); sb.Append(tbPhone.Text); lblMessage.Visible = true; var sb2 = new StringBuilder(); sb2.Append(HelperUtils.EmailHTMLStart()); sb2.Append("Hello "); sb2.Append(tbFirstName.Text); sb2.Append(",<br /><br /> "); sb2.Append("<p>Thank you for your request for a Free Estimate. A member of our sales team will review your information and contact you shortly.</p><p>We appreciate the opportunity to work with you.</p><p>Thank you,</p><p>City Signs</p>"); sb2.Append(HelperUtils.EmailHTMLEnd()); try { var custemail = tbEmail.Text; HelperUtils.SendEmail("*****@*****.**", "*****@*****.**", "", "*****@*****.**", "Online Free Estimate Request", sb.ToString(), false); HelperUtils.SendEmail(custemail, "*****@*****.**", "", "*****@*****.**", "City Signs Online Free Estimate Request", sb2.ToString(), false); lblMessage.Text = "Thank you for your interest!!"; tbDescription.Text = ""; tbEmail.Text = ""; tbFirstName.Text = ""; tbPhone.Text = ""; tbLastName.Text = ""; } catch (Exception ex) { //lblMessage.Text = "We're sorry but your online request cannot be processed right now. Try again or call during business hours. Thank you!"; lblMessage.Visible = true; lblMessage.Text = ex.Message + "<br /><br />" + ex.StackTrace + "<br /><br />" + ex.InnerException.Message + "<br /><br />" + ex.InnerException.StackTrace; } }