Skip to content

A small module for conveniently sending emails.

Notifications You must be signed in to change notification settings

ZERDICORP/zer.mail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

zer.mail 📫

A small module for conveniently sending emails.

Example of usage 🐦

/* Main.java */

import zer.mail.MailClient;

public class Main
{
  public static void main(String[] args)
  {
    new MailClient()
      .from("<sender_email>", "<sender_password>")
      .to("<receiver_email>")
      .message("Example subject", "<h1>Example content</h1>")
      .contentType("text/html")
      .send();
  }
}

About

A small module for conveniently sending emails.

Topics

Resources

Stars

Watchers

Forks

Languages