 | IEmailerSendDebugMsg Method |
Sends the debug Message.
Namespace:
Koden.Utils.Interfaces
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxvoid SendDebugMsg(
string subject,
string body,
string[] attachments,
Exception ex = null
)
Sub SendDebugMsg (
subject As String,
body As String,
attachments As String(),
Optional ex As Exception = Nothing
)
void SendDebugMsg(
String^ subject,
String^ body,
array<String^>^ attachments,
Exception^ ex = nullptr
)
abstract SendDebugMsg :
subject : string *
body : string *
attachments : string[] *
?ex : Exception
(* Defaults:
let _ex = defaultArg ex null
*)
-> unit
Parameters
- subject
- Type: SystemString
The subject. - body
- Type: SystemString
The body. - attachments
- Type: SystemString
The attachments. - ex (Optional)
- Type: SystemException
Any Exception information found.
See Also