All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bselzer.ktx.intent.email.Emailer.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.ktx.intent.email

interface Emailer {
    /**
     * Opens an emailing application with the given [email] data pre-populated.
     *
     * @return true if successful
     */
    fun send(email: Email): Boolean

    companion object : Emailer by SystemEmailer()
}

internal expect class SystemEmailer() : Emailer




© 2015 - 2024 Weber Informatics LLC | Privacy Policy