Exemplo n.º 1
0
        //function to send email
        public static void Send(EmailAddressInfo emailAddressInfo, EmailContent content)
        {
            var sErrorEmail = Object_Fido_Configs.GetAsString("fido.email.erroremail", null);
            var sFidoEmail  = Object_Fido_Configs.GetAsString("fido.email.fidoemail", null);
            var sSMTPServer = Object_Fido_Configs.GetAsString("fido.email.smtpsvr", null);

            try
            {
                var mMessage = new MailMessage {
                    Icontent.BodyHtml = true
                };

                if (!string.IsNullOrEmpty(emailAddressInfo.To))
                {
                    mMessage.To.Add(emailAddressInfo.To);
                }
                else
                {
                    Send(sErrorEmail, "", sFidoEmail, "Fido Error", "Fido Failed: No sender specified in email.", null, null);
                }

                if (!string.IsNullOrEmpty(emailAddressInfo.CC))
                {
                    mMessage.CC.Add(emailAddressInfo.CC);
                }
                mMessage.From    = new MailAddress(emailAddressInfo.From);
                mMessage.Body    = content.Body;
                mMessage.Subject = content.Subject;

                if (content.GaugeAttachments != null)
                {
                    if (mMessage.Body != null)
                    {
                        var htmlView = AlternateView.CreateAlternateViewFromString(mMessage.Body.Trim(), null, "text/html");
                        for (var i = 0; i < content.GaugeAttachments.Count(); i++)
                        {
                            switch (i)
                            {
                            case 0:
                                var totalscore = new LinkedResource(content.GaugeAttachments[i], "image/jpg")
                                {
                                    ContentId = "totalscore"
                                };
                                htmlView.LinkedResources.Add(totalscore);
                                break;

                            case 1:
                                var userscore = new LinkedResource(content.GaugeAttachments[i], "image/png")
                                {
                                    ContentId = "userscore"
                                };
                                htmlView.LinkedResources.Add(userscore);
                                break;

                            case 2:
                                var machinescore = new LinkedResource(content.GaugeAttachments[i], "image/png")
                                {
                                    ContentId = "machinescore"
                                };
                                htmlView.LinkedResources.Add(machinescore);
                                break;

                            case 3:
                                var threatscore = new LinkedResource(content.GaugeAttachments[i], "image/png")
                                {
                                    ContentId = "threatscore"
                                };
                                htmlView.LinkedResources.Add(threatscore);
                                break;
                            }
                        }


                        mMessage.AlternateViews.Add(htmlView);
                    }
                }

                if (!string.IsNullOrEmpty(content.EmailAttachment))
                {
                    var sAttachment = new Attachment(content.EmailAttachment);

                    mMessage.Attachments.Add(sAttachment);
                }

                using (var sSMTP = new SmtpClient(sSMTPServer))
                {
                    Console.WriteLine(@"Sending FIDO email.");
                    var sSMTPUser = Object_Fido_Configs.GetAsString("fido.smtp.smtpuserid", string.Empty);
                    var sSMTPPwd  = Object_Fido_Configs.GetAsString("fido.smtp.smtppwd", string.Empty);
                    sSMTP.Credentials = new NetworkCredential(sSMTPUser, sSMTPPwd);
                    sSMTP.Send(mMessage);
                    sSMTP.Dispose();
                }
            }
            catch (Exception e)
            {
                Send(sErrorEmail, sFidoEmail, sFidoEmail, "Fido Error", "Fido Failed: Generic error sending email." + e, null, null);
                throw;
            }
        }
Exemplo n.º 2
0
 public Email(EmailAddress address, string subject, EmailContent content)
 {
     this.EmailAddress = address;
     this.EmailContent = content;
     this.Subject      = subject;
 }