 | EmailerSendDebugMsg Method |
Sends the debug.
Namespace:
Koden.Utils.Emailer
Assembly:
Koden.Utils.Emailer (in Koden.Utils.Emailer.dll) Version: 1.0.6453.26061
Syntaxpublic void SendDebugMsg(
string subject,
string body,
string[] attachments,
Exception ex = null
)
Public Sub SendDebugMsg (
subject As String,
body As String,
attachments As String(),
Optional ex As Exception = Nothing
)
public:
virtual void SendDebugMsg(
String^ subject,
String^ body,
array<String^>^ attachments,
Exception^ ex = nullptr
) sealed
abstract SendDebugMsg :
subject : string *
body : string *
attachments : string[] *
?ex : Exception
(* Defaults:
let _ex = defaultArg ex null
*)
-> unit
override 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 attachment(s). - ex (Optional)
- Type: SystemException
The ex.
Implements
IEmailerSendDebugMsg(String, String, String, Exception)
See Also