Send automated e-mails in Java without using the JavaMail API.
#Umm... why didn't you just use the JavaMail API? Well, I needed my project to be completely client side (no servers, nothing), if I had used the JavaMail API the user would've had to install a bunch of stuff before being able to receive automated emails from my program.
#Getting started (SendEmail.java)

Change the "your.smtp.server" to your smtp server.
Enter your login ID/Username in the first send(""). Must be in Base64.
Enter your password in the second send(""). Must be in Base64.
Enter your email
Enter the second recipients email (this is optional, you can remove it if you only have one recipient)
Enter your name, email, subject & content *exactly in this format*
This is pretty self-explanatory 😛
#Reference(s): Email format:- https://www.cs.cf.ac.uk/Dave/PERL/node175.html
Base64 encoder:- https://www.base64encode.org



