Skip to content

Instantly share code, notes, and snippets.

View msmosso's full-sized avatar
🚀

Matheus Mósso msmosso

🚀
View GitHub Profile
@raupachz
raupachz / Mail.java
Last active October 7, 2022 18:27
JavaMail API with Amazon Simple Email Service (SES) using the SMTP Interface
import com.sun.mail.smtp.SMTPTransport;
import java.io.IOException;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
/**
@diego3g
diego3g / settings.json
Last active July 8, 2025 01:22
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [
80,
120
],