MailSenderConfiguration

class MailSenderConfiguration(    val enabled: Boolean = true,     val mailTo: String,     val reportAsFile: Boolean = true,     val reportFileName: String = EmailIntentSender.DEFAULT_REPORT_FILENAME,     val subject: String? = null,     val body: String? = null) : Configuration

Author

F43nd1r

Since

01.06.2017

Constructors

Link copied to clipboard
fun MailSenderConfiguration(    enabled: Boolean = true,     mailTo: String,     reportAsFile: Boolean = true,     reportFileName: String = EmailIntentSender.DEFAULT_REPORT_FILENAME,     subject: String? = null,     body: String? = null)

Functions

Link copied to clipboard
open override fun enabled(): Boolean

Properties

Link copied to clipboard
val body: String? = null

custom email body.

Link copied to clipboard
val enabled: Boolean = true

enables this plugin

Link copied to clipboard
val mailTo: String

your crash reports mailbox address

Link copied to clipboard
val reportAsFile: Boolean = true

report is an attachment instead of plain text.

Link copied to clipboard
val reportFileName: String

custom file name for the report

Link copied to clipboard
val subject: String? = null

custom email subject.