IEmailServiceSend Method (String, String, String, String) |
Sends a text (not HTML) e-mail message using the specified basic parameters (from, to, subject, messageText).
Namespace:
NetQuarry.Services
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax void Send(
string from,
string to,
string subject,
string messageText
)
Sub Send (
from As String,
to As String,
subject As String,
messageText 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
Remarks
Note that this override marks the message as text, not HTML. If you want your message
sent as HTML use one of the other overrides.
See Also