Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OutgoingMail.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
Waher.Content.Multipart
;
4
namespace
Waher.Networking.XMPP.Server.Mail
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
}
Waher.Content.Multipart.EmbeddedContent
Represents content embedded in other content.
Definition:
EmbeddedContent.cs:38
Waher.Content.Multipart
Definition:
AlternativeCodec.cs:8
Waher.Networking.XMPP.Server.Mail
Definition:
MailContent.cs:8
Waher.Networking.XMPP.Server
Mail
OutgoingMail.cs
Generated by
1.9.5