SMTP is the protocol used to send an email.
import java.net.*;
import java.io.*;
public class SendVietMXMail {
public static void main(String s[]) {
//
// Send fake mail from Elvis Presley
//
// SendVietMXMail [mail server] [recipient address]
// mail server can be hostname or IP address
//
// ex. SendVietMXMail mail.company.com myFriend@somewhere.vn
//
SendVietMXMail t = new SendVietMXMail();
t.sendMail(s[0], s[1]);
}
public void sendMail(String mailServer, String recipient) {
try {
Socket s = new Socket(mailServer, 25);
BufferedReader in = new BufferedReader
(new InputStreamReader(s.getInputStream(), "8859_1"));
BufferedWriter out = new BufferedWriter
(new OutputStreamWriter(s.getOutputStream(), "8859_1"));
send(in, out, "HELO theWorld");
// warning : some mail server validate the sender address
// in the MAIL FROm command, put your real address here
send(in, out, "MAIL FROM: <viet.mai@maixuanviet.com>");
send(in, out, "RCPT TO: " + recipient);
send(in, out, "DATA");
send(out, "Subject: In the ghetto");
send(out, "From: Viet Mai <viet.mai@maixuanviet.com>");
send (out, "\n");
// message body
send(out, "I'm alive. Help me!");
send(out, "\n.\n");
send(in, out, "QUIT");
s.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
public void send(BufferedReader in, BufferedWriter out, String s) {
try {
out.write(s + "\n");
out.flush();
System.out.println(s);
s = in.readLine();
System.out.println(s);
}
catch (Exception e) {
e.printStackTrace();
}
}
public void send(BufferedWriter out, String s) {
try {
out.write(s + "\n");
out.flush();
System.out.println(s);
}
catch (Exception e) {
e.printStackTrace();
}
}
}
Done! Happy Coding!
Related posts:
Java Program to Implement Maximum Length Chain of Pairs
Java Program to Perform Preorder Non-Recursive Traversal of a Given Binary Tree
JUnit5 @RunWith
Array to String Conversions
Spring @RequestParam Annotation
Java Web Services – Jersey JAX-RS – REST và sử dụng REST API testing tools với Postman
Java Program to Check if a Given Binary Tree is an AVL Tree or Not
Java Program to Find a Good Feedback Edge Set in a Graph
Java Program to Check whether Graph is a Bipartite using DFS
Setting the Java Version in Maven
Thao tác với tập tin và thư mục trong Java
Concrete Class in Java
Java Program to Convert a Decimal Number to Binary Number using Stacks
Mockito and JUnit 5 – Using ExtendWith
New in Spring Security OAuth2 – Verify Claims
Java Program to Implement Sorting of Less than 100 Numbers in O(n) Complexity
Java Program to find the maximum subarray sum O(n^2) time(naive method)
JUnit 5 @Test Annotation
Spring Data MongoDB – Indexes, Annotations and Converters
JUnit5 Programmatic Extension Registration with @RegisterExtension
How to Get All Spring-Managed Beans?
HttpClient 4 – Send Custom Cookie
Spring Cloud AWS – S3
Java – Generate Random String
Java Program to Implement Suffix Tree
Hướng dẫn Java Design Pattern – Interpreter
Java Collections Interview Questions
Introduction to Using Thymeleaf in Spring
Mệnh đề Switch-case trong java
Guide to Spring 5 WebFlux
Understanding Memory Leaks in Java
Java Program to Implement Radix Sort