EmailSimple Constructor (String, String, String, String, ListAttachment) | |
Create simple email by parameteres
Namespace:
SIC.Setting
Assembly:
SIC (in SIC.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public EmailSimple(
string pAddressFrom,
string pAddressTo,
string pSubject,
string pBody,
List<Attachment> pAttachments = null
)
Public Sub New (
pAddressFrom As String,
pAddressTo As String,
pSubject As String,
pBody As String,
Optional pAttachments As List(Of Attachment) = Nothing
)
Parameters
- pAddressFrom
- Type: SystemString
Email address e.g. max@muster.com - pAddressTo
- Type: SystemString
Email address e.g. email@example.com - pSubject
- Type: SystemString
Title of email - pBody
- Type: SystemString
Text of email - pAttachments (Optional)
- Type: System.Collections.GenericListAttachment
A list of Attachment
See Also