Java Example

Share

Certainly, here’s a Java example that demonstrates how to send bulk emails using the JavaMail API to avoid having the emails marked as spam. Please note that this is a simplified example, and in a real-world scenario, you would need to handle many more aspects such as error handling, SMTP server configuration, and message customization.

java
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;

 

public class BulkEmailSender {
public static void main(String[] args) {
// Set your email credentials
String username = “your_email@gmail.com”;
String password = “your_password”;

// Set the SMTP server and port
String smtpHost = “smtp.gmail.com”;
int smtpPort = 587;

// Create a properties object to configure the connection
Properties props = new Properties();
props.put(“mail.smtp.auth”, “true”);
props.put(“mail.smtp.starttls.enable”, “true”);
props.put(“mail.smtp.host”, smtpHost);
props.put(“mail.smtp.port”, smtpPort);

// Create a Session object with your credentials
Session session = Session.getInstance(props,
new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});

try {
// Create a message
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(username));
message.setSubject(“Bulk Email Test”);
message.setText(“This is a bulk email test message.”);

// Create a list of recipients (email addresses)
String[] recipients = {“recipient1@example.com”, “recipient2@example.com”, “recipient3@example.com”};

// Add recipients to the message
for (String recipient : recipients) {
message.addRecipient(Message.RecipientType.TO, new InternetAddress(recipient));
}

// Send the message to all recipients
Transport.send(message);

System.out.println(“Bulk email sent successfully!”);

} catch (MessagingException e) {
e.printStackTrace();
System.err.println("Error sending bulk email: " + e.getMessage());
}
}
}

Make sure to replace “your_email@gmail.com” and “your_password” with your actual Gmail credentials. Also, ensure that you have allowed less secure apps to access your Gmail account if you’re using Gmail for sending emails.

 

Demo Day 1 Video:

 
You can find more information about Java in this Java Docs Link

 

Conclusion:

Unogeeks is the No.1 Training Institute for Java Training. Anyone Disagree? Please drop in a comment

You can check out our other latest blogs on Java Training here – Java Blogs

You can check out our Best in Class Java Training details here – Java Training

💬 Follow & Connect with us:

———————————-

For Training inquiries:

Call/Whatsapp: +91 73960 33555

Mail us at: info@unogeeks.com

Our Website ➜ https://unogeeks.com

Follow us:

Instagram: https://www.instagram.com/unogeeks

Facebook: https://www.facebook.com/UnogeeksSoftwareTrainingInstitute

Twitter: https://twitter.com/unogeeks


Share

Leave a Reply

Your email address will not be published. Required fields are marked *