Skip to content

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;
end

Members

Methods

Public methods

ReturnsName
IExMFGSEmailMessageCreateMessage()
Create an empty email message object.
voidSend(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
TypeNameDescription
stringsenderAddressThe address of the sender
stringtoAddressesA semi-colon (;) delimited string of To addresses.
stringsubjectThe subject of the message.
stringccAddressesA semi-colon (;) delimited string of Cc addresses.
stringbccAddressesA semi-colon (;) delimited string of Bcc addresses.
stringbodyTextThe body text of the message
stringfileAttachmentsA 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