1 38 39 import java.io.*; 40 import java.net.InetAddress ; 41 import java.util.Properties ; 42 import java.util.Date ; 43 44 import javax.mail.*; 45 import javax.mail.internet.*; 46 47 import com.sun.mail.smtp.*; 48 49 61 62 public class smtpsend { 63 64 public static void main(String [] argv) { 65 String to, subject = null, from = null, 66 cc = null, bcc = null, url = null; 67 String mailhost = null; 68 String mailer = "smtpsend"; 69 String file = null; 70 String protocol = null, host = null, user = null, password = null; 71 String record = null; boolean debug = false; 73 boolean verbose = false; 74 boolean auth = false; 75 boolean ssl = false; 76 BufferedReader in = 77 new BufferedReader(new InputStreamReader(System.in)); 78 int optind; 79 80 for (optind = 0; optind < argv.length; optind++) { 81 if (argv[optind].equals("-T")) { 82 protocol = argv[++optind]; 83 } else if (argv[optind].equals("-H")) { 84 host = argv[++optind]; 85 } else if (argv[optind].equals("-U")) { 86 user = argv[++optind]; 87 } else if (argv[optind].equals("-P")) { 88 password = argv[++optind]; 89 } else if (argv[optind].equals("-M")) { 90 mailhost = argv[++optind]; 91 } else if (argv[optind].equals("-f")) { 92 record = argv[++optind]; 93 } else if (argv[optind].equals("-a")) { 94 file = argv[++optind]; 95 } else if (argv[optind].equals("-s")) { 96 subject = argv[++optind]; 97 } else if (argv[optind].equals("-o")) { from = argv[++optind]; 99 } else if (argv[optind].equals("-c")) { 100 cc = argv[++optind]; 101 } else if (argv[optind].equals("-b")) { 102 bcc = argv[++optind]; 103 } else if (argv[optind].equals("-L")) { 104 url = argv[++optind]; 105 } else if (argv[optind].equals("-d")) { 106 debug = true; 107 } else if (argv[optind].equals("-v")) { 108 verbose = true; 109 } else if (argv[optind].equals("-A")) { 110 auth = true; 111 } else if (argv[optind].equals("-S")) { 112 ssl = true; 113 } else if (argv[optind].equals("--")) { 114 optind++; 115 break; 116 } else if (argv[optind].startsWith("-")) { 117 System.out.println( 118 "Usage: smtpsend [[-L store-url] | [-T prot] [-H host] [-U user] [-P passwd]]"); 119 System.out.println( 120 "\t[-s subject] [-o from-address] [-c cc-addresses] [-b bcc-addresses]"); 121 System.out.println( 122 "\t[-f record-mailbox] [-M transport-host] [-d] [-a attach-file]"); 123 System.out.println( 124 "\t[-v] [-A] [-S] [address]"); 125 System.exit(1); 126 } else { 127 break; 128 } 129 } 130 131 try { 132 if (optind < argv.length) { 133 to = argv[optind]; 135 System.out.println("To: " + to); 136 } else { 137 System.out.print("To: "); 138 System.out.flush(); 139 to = in.readLine(); 140 } 141 if (subject == null) { 142 System.out.print("Subject: "); 143 System.out.flush(); 144 subject = in.readLine(); 145 } else { 146 System.out.println("Subject: " + subject); 147 } 148 149 Properties props = System.getProperties(); 150 if (mailhost != null) 151 props.put("mail.smtp.host", mailhost); 152 if (auth) 153 props.put("mail.smtp.auth", "true"); 154 155 Session session = Session.getInstance(props, null); 157 if (debug) 158 session.setDebug(true); 159 160 Message msg = new MimeMessage(session); 162 if (from != null) 163 msg.setFrom(new InternetAddress(from)); 164 else 165 msg.setFrom(); 166 167 msg.setRecipients(Message.RecipientType.TO, 168 InternetAddress.parse(to, false)); 169 if (cc != null) 170 msg.setRecipients(Message.RecipientType.CC, 171 InternetAddress.parse(cc, false)); 172 if (bcc != null) 173 msg.setRecipients(Message.RecipientType.BCC, 174 InternetAddress.parse(bcc, false)); 175 176 msg.setSubject(subject); 177 178 String text = collect(in); 179 180 if (file != null) { 181 MimeBodyPart mbp1 = new MimeBodyPart(); 184 mbp1.setText(text); 185 MimeBodyPart mbp2 = new MimeBodyPart(); 186 mbp2.attachFile(file); 187 MimeMultipart mp = new MimeMultipart(); 188 mp.addBodyPart(mbp1); 189 mp.addBodyPart(mbp2); 190 msg.setContent(mp); 191 } else { 192 msg.setText(text); 195 } 196 197 msg.setHeader("X-Mailer", mailer); 198 msg.setSentDate(new Date ()); 199 200 210 SMTPTransport t = 211 (SMTPTransport)session.getTransport(ssl ? "smtps" : "smtp"); 212 try { 213 if (auth) 214 t.connect(mailhost, user, password); 215 else 216 t.connect(); 217 t.sendMessage(msg, msg.getAllRecipients()); 218 } finally { 219 if (verbose) 220 System.out.println("Response: " + 221 t.getLastServerResponse()); 222 t.close(); 223 } 224 225 System.out.println("\nMail was sent successfully."); 226 227 229 if (record != null) { 230 Store store = null; 232 if (url != null) { 233 URLName urln = new URLName(url); 234 store = session.getStore(urln); 235 store.connect(); 236 } else { 237 if (protocol != null) 238 store = session.getStore(protocol); 239 else 240 store = session.getStore(); 241 242 if (host != null || user != null || password != null) 244 store.connect(host, user, password); 245 else 246 store.connect(); 247 } 248 249 Folder folder = store.getFolder(record); 251 if (folder == null) { 252 System.err.println("Can't get record folder."); 253 System.exit(1); 254 } 255 if (!folder.exists()) 256 folder.create(Folder.HOLDS_MESSAGES); 257 258 Message[] msgs = new Message[1]; 259 msgs[0] = msg; 260 folder.appendMessages(msgs); 261 262 System.out.println("Mail was recorded successfully."); 263 } 264 265 } catch (Exception e) { 266 if (e instanceof SendFailedException) { 267 MessagingException sfe = (MessagingException)e; 268 if (sfe instanceof SMTPSendFailedException) { 269 SMTPSendFailedException ssfe = 270 (SMTPSendFailedException)sfe; 271 System.out.println("SMTP SEND FAILED:"); 272 if (verbose) 273 System.out.println(ssfe.toString()); 274 System.out.println(" Command: " + ssfe.getCommand()); 275 System.out.println(" RetCode: " + ssfe.getReturnCode()); 276 System.out.println(" Response: " + ssfe.getMessage()); 277 } else { 278 if (verbose) 279 System.out.println("Send failed: " + sfe.toString()); 280 } 281 Exception ne; 282 while ((ne = sfe.getNextException()) != null && 283 ne instanceof MessagingException) { 284 sfe = (MessagingException)ne; 285 if (sfe instanceof SMTPAddressFailedException) { 286 SMTPAddressFailedException ssfe = 287 (SMTPAddressFailedException)sfe; 288 System.out.println("ADDRESS FAILED:"); 289 if (verbose) 290 System.out.println(ssfe.toString()); 291 System.out.println(" Address: " + ssfe.getAddress()); 292 System.out.println(" Command: " + ssfe.getCommand()); 293 System.out.println(" RetCode: " + ssfe.getReturnCode()); 294 System.out.println(" Response: " + ssfe.getMessage()); 295 } else if (sfe instanceof SMTPAddressSucceededException) { 296 System.out.println("ADDRESS SUCCEEDED:"); 297 SMTPAddressSucceededException ssfe = 298 (SMTPAddressSucceededException)sfe; 299 if (verbose) 300 System.out.println(ssfe.toString()); 301 System.out.println(" Address: " + ssfe.getAddress()); 302 System.out.println(" Command: " + ssfe.getCommand()); 303 System.out.println(" RetCode: " + ssfe.getReturnCode()); 304 System.out.println(" Response: " + ssfe.getMessage()); 305 } 306 } 307 } else { 308 System.out.println("Got Exception: " + e); 309 if (verbose) 310 e.printStackTrace(); 311 } 312 } 313 } 314 315 public static String collect(BufferedReader in) throws IOException { 316 String line; 317 StringBuffer sb = new StringBuffer (); 318 while ((line = in.readLine()) != null) { 319 sb.append(line); 320 sb.append("\n"); 321 } 322 return sb.toString(); 323 } 324 } 325
| Popular Tags
|