예제 #1
0
        public async Task<bool> LogEmailReceived(IMessageSummary summary)
        {

            if (string.IsNullOrEmpty(summary.Envelope.MessageId)) return false;

            using (var context = new MailModelContainer())
            {
                //if it's already in the DB we're not going to log it received
                if (context.Emails.Any(x => x.EnvelopeID.Equals(summary.Envelope.MessageId))) return false;
                
                //generate new Email and EmailLogs
                var email = new Email()
                {
                    BodyText = "",
                    EnvelopeID = summary.Envelope.MessageId,
                    InQueue = true,
                    MarkedAsRead = false,
                    Minutes = (int) (DateTime.Now.ToUniversalTime() - summary.Date.ToUniversalTime()).TotalMinutes,
                    Sender = summary.Envelope.From.ToString(),
                    Subject = string.IsNullOrEmpty(summary.Envelope.Subject) ? "" :summary.Envelope.Subject,
                    TimeReceived = summary.InternalDate?.LocalDateTime ?? summary.Date.LocalDateTime,
                    TimeSent = summary.Date.LocalDateTime,
                    ImapMailBoxConfigurationId = _config.Id
                };

                var el = new EmailLog();
                el.Action = "Received";
                el.TimeActionTaken = DateTime.Now.ToLocalTime();
                el.TakenBy = "";
                el.Email = email;

                email.EmailLogs.Add(el);

                try
                {
                    context.Emails.Add(email);
                    await context.SaveChangesAsync();
                }
                catch (DbEntityValidationException ex)
                {
                    throw ex;
                }
            }

            return true;
        }
예제 #2
0
        public async Task LogEmailChanged(IMessageSummary email, string actionTakenBy, string action)
        {
            using (var context = new MailModelContainer())
            {

                var selectedEmails =
                    context.Emails.Include(x => x.EmailLogs).Where(
                        x => _config.Id == x.ImapMailBoxConfigurationId && x.EnvelopeID.Equals(email.Envelope.MessageId));

                var newLogs = new List<EmailLog>();

                foreach (var em in selectedEmails)
                {
                    var el = new EmailLog
                    {
                        Action = action,
                        TimeActionTaken = DateTime.Now.ToLocalTime(),
                        Email = em,
                        TakenBy = actionTakenBy
                    };
                    newLogs.Add(el);
                }

                context.EmailLogs.AddRange(newLogs);
                await context.SaveChangesAsync();
            }
        }
예제 #3
0
        public async Task LogEmailSent(MimeMessage message, string emailDestination, bool moved)
        {
            using (var ctx = new MailModelContainer())
            {
                var selectedEmail =
                    ctx.Emails.FirstOrDefault(x => x.EnvelopeID.Equals(message.MessageId) &&
                            x.ImapMailBoxConfiguration.Id == _config.Id);

                var mailBoxName = ctx.ImapMailBoxConfigurations.FirstOrDefault(x => x.Id == _config.Id);

                if (selectedEmail == null) return;

                var newLogs = new List<EmailLog>();

                try
                {
                    selectedEmail.BodyText =
                        HtmlToText.ConvertHtml(message.BodyParts.OfType<TextPart>().FirstOrDefault()?.Text);
                }
                catch (Exception ex)
                {
                    selectedEmail.BodyText = "-";
                }

                var log = new EmailLog()
                {
                    Action = moved ? $"Sent to {emailDestination} and moved to {mailBoxName?.MailBoxName}/{emailDestination}" : $"Sent to {emailDestination}",
                    Email = selectedEmail, TakenBy = emailDestination, TimeActionTaken = DateTime.Now.ToLocalTime()
                };

                selectedEmail.Minutes = (int)(DateTime.Now.ToUniversalTime() - selectedEmail.TimeReceived.ToUniversalTime()).TotalMinutes;
                selectedEmail.InQueue = false;

                newLogs.Add(log);
                ctx.EmailLogs.AddRange(newLogs);
                await ctx.SaveChangesAsync();
            }
        }