Skip to content

Instantly share code, notes, and snippets.

@M3d-Edge
M3d-Edge / App.kt
Created June 21, 2023 20:42 — forked from BlackthornYugen/App.kt
Sending an email using kotlin and javax.mail
/*
* Sending an email using kotlin and javax.mail
*
* Usage: java -jar app.jar <user> <password> <from> <to> <cc>
*/
package main.kotlin.sendmail
import java.util.*
import javax.mail.*
import javax.mail.internet.*