MFGS Email
MFGSEmail Public interface
Description
Describes methods and properties available on the static instance object MFGS.Email
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph VGWWCoreIEx VGWWCoreIEx.IExMFGSEmail[[IExMFGSEmail]] class VGWWCoreIEx.IExMFGSEmail interfaceStyle; endMembers
Methods
Public methods
| Returns | Name |
|---|---|
IExMFGSEmailMessage | CreateMessage()Create an empty email message object. |
void | Send(string senderAddress, string toAddresses, string subject, string ccAddresses, string bccAddresses, string bodyText, string fileAttachments)Send an email message |
Details
Summary
Describes methods and properties available on the static instance object MFGS.Email
Methods
Send
public void Send(string senderAddress, string toAddresses, string subject, string ccAddresses, string bccAddresses, string bodyText, string fileAttachments)Arguments
| Type | Name | Description |
|---|---|---|
string | senderAddress | The address of the sender |
string | toAddresses | A semi-colon (;) delimited string of To addresses. |
string | subject | The subject of the message. |
string | ccAddresses | A semi-colon (;) delimited string of Cc addresses. |
string | bccAddresses | A semi-colon (;) delimited string of Bcc addresses. |
string | bodyText | The body text of the message |
string | fileAttachments | A pipe ( |
Summary
Send an email message
Remarks
The SMTP Client settings, on the Email section of the MFGStream Configuration, must be properly configured otherwise attempting to send an email message will result in an error
CreateMessage
public IExMFGSEmailMessage CreateMessage()Summary
Create an empty email message object.
Returns
A IExMFGSEmailMessage instance
Generated with ModularDoc