MailServiceSend Method (String, String, String, String, Boolean, String) |
Sends a text or HTML e-mail message using the specified basic parameters (
from,
to,
subject,
messageText)
and using a
Template for the email composition.
Namespace:
NetQuarry.Services
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public void Send(
string from,
string to,
string subject,
string messageText,
bool bodyIsHtml,
string templateName
)
Public Sub Send (
from As String,
to As String,
subject As String,
messageText As String,
bodyIsHtml As Boolean,
templateName As String
)
Parameters
- from
- Type: SystemString
The address of the e-mail sender - to
- Type: SystemString
The address of the e-mail recipients - subject
- Type: SystemString
The subject of the email - messageText
- Type: SystemString
The body of the message to send - bodyIsHtml
- Type: SystemBoolean
The messageText param is HTML. - templateName
- Type: SystemString
The name of a template associated with the mail message.
Implements
IEmailServiceSend(String, String, String, String, Boolean, String)See Also