Esempio n. 1
0
        public ActionResult Sendin(string Email1, string Id1, string client1)
        {
            Aspose.Email.Mail.SmtpClient client = new Aspose.Email.Mail.SmtpClient();
            client.Host            = "smtp.gmail.com";
            client.Username        = "******";
            client.Password        = "******";
            client.Port            = 587;
            client.SecurityOptions = Aspose.Email.SecurityOptions.SSLExplicit;
            Aspose.Email.Mail.MailMessage message = new Aspose.Email.Mail.MailMessage();
            message.From = new Aspose.Email.Mail.MailAddress("*****@*****.**");
            message.To.Add(new Aspose.Email.Mail.MailAddress("*****@*****.**"));
            message.Priority = Aspose.Email.Mail.MailPriority.High;

            int ids = MvcApplication.Pr_one;

            if (int.TryParse(Id1, out ids))
            {
                if (ids == MvcApplication.Pr_minusone)
                {
                    message.Subject = "U are a registered client Please add projects to the tool";
                    // message.HtmlBody = "<a href='http://localhost:55814/Projects/Create'>Go to register </a>";
                    message.HtmlBody = ("<a href='http://localhost:55814/Projects/CreateExternal?client=" + client1 + "'>Go to register </a>");
                    Debug.Write("aissaaa" + message.HtmlBody);
                }
                else if (ids == MvcApplication.Pr_Zero)
                {
                    message.Subject  = "U have not registered to the tool pelase register first to add Projects to the tool";
                    message.HtmlBody = "<a href='http://localhost:55814/Clients/Create'> Go to register </a>";
                }
            }
            else
            {
                message.Subject = "Giving the User Name";
                message.Body    = "Your Registration No" + Id1;
            }
            try
            {
                client.Send(message);
                TempData["Success"] = "We Sent A Mail successfully";
            }
            catch (Exception)
            {
                TempData["ErrorMail"] = "Sorry we were Unable to Send the E-mail";
            }
            return(RedirectToAction("Login", "Register"));
        }
Esempio n. 2
0
        public ActionResult Sendin(string Email1 , string Id1,string client1)
        {
            
            Aspose.Email.Mail.SmtpClient client = new Aspose.Email.Mail.SmtpClient();
            client.Host = "smtp.gmail.com";
            client.Username = "******";
            client.Password = "******";
            client.Port = 587;
            client.SecurityOptions = Aspose.Email.SecurityOptions.SSLExplicit;
            Aspose.Email.Mail.MailMessage message = new Aspose.Email.Mail.MailMessage();
            message.From = new Aspose.Email.Mail.MailAddress("*****@*****.**");
            message.To.Add(new Aspose.Email.Mail.MailAddress("*****@*****.**"));
            message.Priority = Aspose.Email.Mail.MailPriority.High;
            
            int ids = 0;
            if (int.TryParse(Id1, out ids))
            {
                if (ids == -1)
                {
                    message.Subject = "U are a registered client Please add projects to the tool";
                   // message.HtmlBody = "<a href='http://localhost:55814/Projects/Create'>Go to register </a>";
                    message.HtmlBody=("<a href='http://localhost:55814/Projects/Create?client="+client1+"'>Go to register </a>");
                    Debug.Write("aissaaa"+message.HtmlBody);
                }
                else if (ids == 0)
                {
                    message.Subject = "U have not registered to the tool pelase register first to add Projects to the tool";
                    message.HtmlBody = "<a href='http://localhost:55814/Clients/Create'> Go to register </a>";

                }
            }
            else
            {
                message.Subject = "Giving the User Name";
                message.Body = "Your Registration No" + Id1;

            }

            client.Send(message);

            return RedirectToAction("Login","Register");
        }
Esempio n. 3
0
        public ActionResult Sendin(string Email1, string Id1, string client1)
        {
            Aspose.Email.Mail.SmtpClient client = new Aspose.Email.Mail.SmtpClient();
            client.Host            = "smtp.gmail.com";
            client.Username        = "******";
            client.Password        = "******";
            client.Port            = 587;
            client.SecurityOptions = Aspose.Email.SecurityOptions.SSLExplicit;
            Aspose.Email.Mail.MailMessage message = new Aspose.Email.Mail.MailMessage();
            message.From = new Aspose.Email.Mail.MailAddress("*****@*****.**");
            message.To.Add(new Aspose.Email.Mail.MailAddress("*****@*****.**"));
            message.Priority = Aspose.Email.Mail.MailPriority.High;

            int ids = 0;

            if (int.TryParse(Id1, out ids))
            {
                if (ids == -1)
                {
                    message.Subject = "U are a registered client Please add projects to the tool";
                    // message.HtmlBody = "<a href='http://localhost:55814/Projects/Create'>Go to register </a>";
                    message.HtmlBody = ("<a href='http://localhost:55814/Projects/Create?client=" + client1 + "'>Go to register </a>");
                    Debug.Write("aissaaa" + message.HtmlBody);
                }
                else if (ids == 0)
                {
                    message.Subject  = "U have not registered to the tool pelase register first to add Projects to the tool";
                    message.HtmlBody = "<a href='http://localhost:55814/Clients/Create'> Go to register </a>";
                }
            }
            else
            {
                message.Subject = "Giving the User Name";
                message.Body    = "Your Registration No" + Id1;
            }

            client.Send(message);

            return(RedirectToAction("Login", "Register"));
        }