Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OutgoingMail.cs
1using System;
2using System.Collections.Generic;
5{
9 internal class OutgoingMail
10 {
11 public string From = null;
12 public string To = null;
13 public string Subject = null;
14 public Dictionary<string, OutgoingMailRec> ById = null;
15 public LinkedList<OutgoingMailRec> Records = new LinkedList<OutgoingMailRec>();
16 public SmtpS2SEndpoint Endpoint;
17 }
18
19 internal class OutgoingMailRec
20 {
21 public string Id;
22 public string Html;
23 public string Text;
24 public EmbeddedContent[] Embedded;
25 }
26}
Represents content embedded in other content.