Example #1
0
        protected void btnSubmitAll_Click(object sender, EventArgs e)
        {
            if (txtEmailTo.Text.Trim() != "")
            {
                string   directoryPath = @"D:\Projects\Smart Library\Source Code\trunk\SmartLibrary.Admin\EmailTemplates";
                bool     sent          = false;
                string[] fileEntries   = Directory.GetFiles(directoryPath);
                foreach (string fileName in fileEntries)
                {
                    if (!fileName.Contains("MasterEmailTemplate"))
                    {
                        sent = UserMail.SendTestEmail(fileName.Replace(directoryPath, "").Replace("\\", "").Replace(".html", ""), txtEmailTo.Text.Trim());
                    }
                }

                if (sent)
                {
                    lblError.Text = "Email Sent Successfully.";
                }
                else
                {
                    lblError.Text = "There is an error while sending email.";
                }
            }
        }
Example #2
0
        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            if (txtEmailTemplate.Text.Trim() != "" && txtEmailTo.Text.Trim() != "")
            {
                bool sent = UserMail.SendTestEmail(txtEmailTemplate.Text.Trim(), txtEmailTo.Text.Trim());

                if (sent)
                {
                    lblError.Text = "Email Sent Successfully.";
                }
                else
                {
                    lblError.Text = "There is an error while sending email.";
                }
            }
        }