commonMain.com.bselzer.ktx.intent.email.Emailer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intent-jvm Show documentation
Show all versions of intent-jvm Show documentation
Based on Android intents.
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