• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

eSusFarm / eSusInsurers-API / 203

03 Oct 2025 05:31PM UTC coverage: 81.93% (-0.8%) from 82.761%
203

Pull #105

appveyor

web-flow
Merge 19da31177 into d84338501
Pull Request #105: Dpg

20222 of 24682 relevant lines covered (81.93%)

1.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/ExternalIntegrations/EmailService/Models/Message.cs
1
using Microsoft.AspNetCore.Http;
2
using MimeKit;
3
using System.Net.Mail;
4

5
namespace EmailService.Models
6
{
7
    public class Message
8
    {
9
        public string To { get; set; }
×
10
        public string Subject { get; set; }
×
11
        public string Content { get; set; }
×
12

13
        public IFormFileCollection? Attachments { get; set; }
×
14

15
        public Message(IEnumerable<string> to, string subject, string content, IFormFileCollection? attachments)
×
16
        {
17
            To = string.Join(", ", to.Select(x => new MailAddress(x)));
×
18
            Subject = subject;
×
19
            Content = content;
×
20
            Attachments = attachments;
×
21
        }
×
22
    }
23
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc