Solutions for Mail User Agent: Simplified Version

  1. import java.io.*;
  2. import java.net.*;
  3.  
  4. public class EmailSender
  5. {
  6. public static void main(String[] args) throws Exception
  7. {
  8. // Establish a TCP connection with the mail server.
  9. Socket socket = new Socket("mx1.csusb.edu", 25);
  10.  
  11. // Create a BufferedReader to read a line at a time.
  12. InputStream is = socket.getInputStream();
  13. InputStreamReader isr = new InputStreamReader(is);
  14. BufferedReader br = new BufferedReader(isr);
  15.  
  16. // Read greeting from the server.
  17. String response = br.readLine();
  18. System.out.println(response);
  19. if (!response.startsWith("220")) {
  20. throw new Exception("220 reply not received from server.");
  21. }
  22.  
  23. // Get a reference to the socket's output stream.
  24. OutputStream os = socket.getOutputStream();
  25.  
  26. // Send HELO command and get server response.
  27. String command = "HELO x\r\n";
  28. System.out.print(command);
  29. os.write(command.getBytes("US-ASCII"));
  30. response = br.readLine();
  31. System.out.println(response);
  32. if (!response.startsWith("250")) {
  33. throw new Exception("250 reply not received from server.");
  34. }
  35.  
  36. // Send MAIL FROM command.
  37. command = "MAIL FROM: x@aiit.or.kr\r\n";
  38. System.out.print(command);
  39. os.write(command.getBytes("US-ASCII"));
  40. response = br.readLine();
  41. System.out.println(response);
  42. if (!response.startsWith("250")) {
  43. throw new Exception("250 reply not received from server.");
  44. }
  45.  
  46. // Send RCPT TO command.
  47. command = "RCPT TO: dturner@csusb.edu\r\n";
  48. System.out.print(command);
  49. os.write(command.getBytes("US-ASCII"));
  50. response = br.readLine();
  51. System.out.println(response);
  52. if (!response.startsWith("250")) {
  53. throw new Exception("250 reply not received from server.");
  54. }
  55.  
  56. // Send DATA command.
  57. command = "DATA\r\n";
  58. System.out.print(command);
  59. os.write(command.getBytes("US-ASCII"));
  60. response = br.readLine();
  61. System.out.println(response);
  62. if (!response.startsWith("354")) {
  63. throw new Exception("354 reply not received from server.");
  64. }
  65.  
  66. // Send message data.
  67. os.write("SUBJECT: test msg\r\n\r\n".getBytes("US-ASCII"));
  68. os.write("David,\r\n".getBytes("US-ASCII"));
  69. os.write("\r\n".getBytes("US-ASCII"));
  70. os.write("This lab is too hard.\r\n".getBytes("US-ASCII"));
  71.  
  72. // End with line with a single period.
  73. os.write(".\r\n".getBytes("US-ASCII"));
  74. response = br.readLine();
  75. System.out.println(response);
  76. if (!response.startsWith("250")) {
  77. throw new Exception("250 reply not received from server.");
  78. }
  79.  
  80. // Send QUIT command.
  81. command = "QUIT\r\n";
  82. System.out.print(command);
  83. os.write(command.getBytes("US-ASCII"));
  84. response = br.readLine();
  85. System.out.println(response);
  86. }
  87. }