ddykotex.courier_2.11.3.1.0.source-code.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of courier_2.11 Show documentation
Show all versions of courier_2.11 Show documentation
deliver electronic mail with scala
The newest version!
import javax.mail.internet.InternetAddress
/** An agreeable email interface for scala. */
package object courier {
implicit class addr(name: String){
def `@`(domain: String): InternetAddress = new InternetAddress(s"$name@$domain")
def at = `@` _
/** In case whole string is email address already */
def addr = new InternetAddress(name)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy