 | IMailMessageServiceSend(String, String, MailMessageFlags, String, Guid) Method |
Send a mail message with the specified subject, body, flags and recipients
Namespace: SanteDB.Core.ServicesAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxMailMessage Send(
string subject,
string body,
MailMessageFlags flags,
string toLine,
params Guid[] recipients
)
Function Send (
subject As String,
body As String,
flags As MailMessageFlags,
toLine As String,
ParamArray recipients As Guid()
) As MailMessage
MailMessage^ Send(
String^ subject,
String^ body,
MailMessageFlags flags,
String^ toLine,
... array<Guid>^ recipients
)
abstract Send :
subject : string *
body : string *
flags : MailMessageFlags *
toLine : string *
recipients : Guid[] -> MailMessage Parameters
- subject String
- The subject of the message
- body String
- The body of the message
- flags MailMessageFlags
- The flags of the message
- toLine String
- The informational TO line (for when the recipient cannot be identified
- recipients Guid
- The recipient role, user, or device
Return Value
MailMessageThe sent mail message
See Also