IMessagingPluginSendMessage Method (String, String, String, String, Guid, String, Guid) |
Send a message using the method implemented in this plugin.
Namespace:
Atomia.Billing.Core.Sdk.Plugins
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax void SendMessage(
string recipient,
string subject,
string body,
string pdf_attachment,
Guid accountId,
string entity,
Guid messageId
)
Sub SendMessage (
recipient As String,
subject As String,
body As String,
pdf_attachment As String,
accountId As Guid,
entity As String,
messageId As Guid
)
void SendMessage(
String^ recipient,
String^ subject,
String^ body,
String^ pdf_attachment,
Guid accountId,
String^ entity,
Guid messageId
)
abstract SendMessage :
recipient : string *
subject : string *
body : string *
pdf_attachment : string *
accountId : Guid *
entity : string *
messageId : Guid -> unit
Parameters
- recipient
- Type: SystemString
The recipient (i.e. email, phone number for SMS etc). - subject
- Type: SystemString
The subject of the message. - body
- Type: SystemString
The body of the message, if any. - pdf_attachment
- Type: SystemString
A Base64 encoded PDF to attach, or null. - accountId
- Type: SystemGuid
The account id of the recipient. - entity
- Type: SystemString
The entity of the message. - messageId
- Type: SystemGuid
The ID of the message used to track it.
See Also