Esta é uma biblioteca simples e pragmática para envio de e-mails em sistemas feitos sob Java.
Você precisará apenas de uma chave de api fornecida por SMTP2GO para utilizar a biblioteca.
Adicione o seguinte trecho dentro da tag em seu arquivo pom.xml
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.0</version>
</dependency>
<dependency>
<groupId>br.com.muryllo.jmailer</groupId>
<artifactId>jmailer</artifactId>
<version>1.2.3</version>
</dependency>
Utilize este trecho de código para enviar seus emails, mude-o como quiser e achar melhor.
Mailer mail = new Mailer()
.key("<your-api-key>")
.subject("Teste de Email!")
.from("Teste", "teste@muryllo.com.br")
.to("Muryllo Pimenta", "muryllo.pimenta@upe.br")
.htmlBody("<h1>Confirmação de cadastro</h1>");
MailerResponse result = mail.send();
System.out.println(result.success());
Muryllo Pimenta de Oliveira – muryllo.pimenta@upe.br
Distribuído sobre a licença MIT. Veja LICENSE
para mais informações.
- Fork it (https://github.com/MurylloEx/JMailer/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request