Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 452 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 452 Bytes

JMail - a simple GMail email sender in Java

How it works

GMailSender sender = new GMailSender("<your gmail address>", "<your gmail password>");
sender.sendMail("<subject>", <html body>, <sender display name>, "<comma separated recipients>");

Example Usage

GMailSender sender = new GMailSender("[email protected]", "bobby");
sender.sendMail("I know", "Who killed Laura Palmer", "Mike", "[email protected],[email protected]");