 | SmtpMail(String, IEnumerableString, Byte) Constructor |
Creates new SmtpMail object.
Namespace: Limilabs.Client.SMTPAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic 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[] -> SmtpMailParameters
- from String
- From mail address.
- to IEnumerableString
- Collection of mail addresses this message will be sent to.
- eml Byte
- Message data in eml format to be send.
See Also