public StandardEmail(string id, string messageTxt, string sender, string subject)
        {
            urlQuarantine = URLQuarantine.Instance;
            type = "standard_email";
            this.messageTxt = messageTxt;
            this.sender = sender;
            this.subject = subject;
            this.id = id;

            processUrls();
        }
        public SIREmail(string id, string messageTxt, string sender, string subject, string sortCode, string incidentNature)
        {
            urlQuarantine = URLQuarantine.Instance;
            type = "sir_email";
            this.messageTxt = messageTxt;
            this.sender = sender;
            this.subject = subject;
            this.incident = new Incident(incidentNature, sortCode);
            this.id = id;

            processUrls();
        }
 public StandardEmail()
 {
     urlQuarantine = URLQuarantine.Instance;
     type = "standard_email";
 }
 public SIREmail()
 {
     urlQuarantine = URLQuarantine.Instance;
     type = "sir_email";
 }