 | INotificationRelaySend Method |
Send the specified notification to the specified address
Namespace: SanteDB.Core.NotificationsAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxGuid Send(
string[] toAddress,
string subject,
string body,
DateTimeOffset? scheduleDelivery = null,
bool ccAdmins = false,
params NotificationAttachment[] attachments
)
Function Send (
toAddress As String(),
subject As String,
body As String,
Optional scheduleDelivery As DateTimeOffset? = Nothing,
Optional ccAdmins As Boolean = false,
ParamArray attachments As NotificationAttachment()
) As Guid
Guid Send(
array<String^>^ toAddress,
String^ subject,
String^ body,
Nullable<DateTimeOffset> scheduleDelivery = nullptr,
bool ccAdmins = false,
... array<NotificationAttachment^>^ attachments
)
abstract Send :
toAddress : string[] *
subject : string *
body : string *
?scheduleDelivery : Nullable<DateTimeOffset> *
?ccAdmins : bool *
attachments : NotificationAttachment[]
(* Defaults:
let _scheduleDelivery = defaultArg scheduleDelivery null
let _ccAdmins = defaultArg ccAdmins false
*)
-> Guid Parameters
- toAddress String
- The address where the notification is to be sent
- subject String
- The subject of the message
- body String
- The body of the message
- scheduleDelivery NullableDateTimeOffset (Optional)
- The time when the message should be sent (for future delivery)
- ccAdmins Boolean (Optional)
- When true, administrators should be notified as well
- attachments NotificationAttachment
- Attachment file and content
Return Value
Guid[Missing <returns> documentation for "M:SanteDB.Core.Notifications.INotificationRelay.Send(System.String[],System.String,System.String,System.Nullable{System.DateTimeOffset},System.Boolean,SanteDB.Core.Notifications.NotificationAttachment[])"]
See Also