Send Email to Anyone using this library
To get a Git project into your build:
Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
Add it in your root app.gradle at the end of repositories:
dependencies {
...
implementation 'com.github.1902shubh:SendMail:1.0.0'
...
}
Simple use cases will look something like this:
SendMail mail = new SendMail("[email protected]", "sender_pass",
"[email protected]",
"Testing Email Sending",
"Yes, it's working well\nI will use it always.");
mail.execute();