| SmtpMail Constructor (String, IEnumerableString, Byte) |
Creates new SmtpMail object.
Namespace:
Limilabs.Client.SMTP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public SmtpMail(
string from,
IEnumerable<string> to,
byte[] eml
)
Public Sub New (
from As String,
to As IEnumerable(Of String),
eml As Byte()
)
public:
SmtpMail(
String^ from,
IEnumerable<String^>^ to,
array<unsigned char>^ eml
)
new :
from : string *
to : IEnumerable<string> *
eml : byte[] -> SmtpMail
Parameters
- from
- Type: SystemString
From mail address. - to
- Type: System.Collections.GenericIEnumerableString
Collection of mail addresses this message will be sent to. - eml
- Type: SystemByte
Message data in eml format to be send.
See Also