첨부 파일 이 있 는 메 일 을 javamail 로 보 냅 니 다.
19010 단어 javamail
mail.java 코드
package mail;
import java.util.* ;
import java.io.* ;
import javax.mail.* ;
import javax.mail.internet.* ;
import javax.activation.* ;
public class Mail {
// 、 、SMTP 、 、 、 、
private String displayName;
private String to;
private String from;
private String smtpServer;
private String username;
private String password;
private String subject;
private String content;
private boolean ifAuth; //
private String filename="";
private Vector file = new Vector(); //
/**
* SMTP
*/
public void setSmtpServer(String smtpServer){
this.smtpServer=smtpServer;
}
/**
*
*/
public void setFrom(String from){
this.from=from;
}
/**
*
*/
public void setDisplayName(String displayName){
this.displayName=displayName;
}
/**
*
*/
public void setIfAuth(boolean ifAuth){
this.ifAuth=ifAuth;
}
/**
* E-mail
*/
public void setUserName(String username){
this.username=username;
}
/**
* E-mail
*/
public void setPassword(String password){
this.password=password;
}
/**
*
*/
public void setTo(String to){
this.to=to;
}
/**
*
*/
public void setSubject(String subject){
this.subject=subject;
}
/**
*
*/
public void setContent(String content){
this.content=content;
}
/**
*
*/
public void addAttachfile(String fname){
file.addElement(fname);
}
public Mail(){
}
/**
* SMTP 、 E-mail 、 、 、 、 、
*/
public Mail(String smtpServer,String from,String displayName,String username,String password,String to,String subject,String content){
this.smtpServer=smtpServer;
this.from=from;
this.displayName=displayName;
this.ifAuth=true;
this.username=username;
this.password=password;
this.to=to;
this.subject=subject;
this.content=content;
}
/**
* SMTP 、 E-mail 、 、 、
*/
public Mail(String smtpServer,String from,String displayName,String to,String subject,String content){
this.smtpServer=smtpServer;
this.from=from;
this.displayName=displayName;
this.ifAuth=false;
this.to=to;
this.subject=subject;
this.content=content;
}
/**
*
*/
public HashMap send(){
HashMap map=new HashMap();
map.put("state", "success");
String message=" !";
Session session=null;
Properties props = System.getProperties();
props.put("mail.smtp.host", smtpServer);
if(ifAuth){ //
props.put("mail.smtp.auth","true");
SmtpAuth smtpAuth=new SmtpAuth(username,password);
session=Session.getDefaultInstance(props, smtpAuth);
}else{
props.put("mail.smtp.auth","false");
session=Session.getDefaultInstance(props, null);
}
session.setDebug(true);
Transport trans = null;
try {
Message msg = new MimeMessage(session);
try{
Address from_address = new InternetAddress(from, displayName);
msg.setFrom(from_address);
}catch(java.io.UnsupportedEncodingException e){
e.printStackTrace();
}
InternetAddress[] address={new InternetAddress(to)};
msg.setRecipients(Message.RecipientType.TO,address);
msg.setSubject(subject);
Multipart mp = new MimeMultipart();
MimeBodyPart mbp = new MimeBodyPart();
mbp.setContent(content.toString(), "text/html;charset=gb2312");
mp.addBodyPart(mbp);
if(!file.isEmpty()){//
Enumeration efile=file.elements();
while(efile.hasMoreElements()){
mbp=new MimeBodyPart();
filename=efile.nextElement().toString(); //
FileDataSource fds=new FileDataSource(filename); //
mbp.setDataHandler(new DataHandler(fds)); // BodyPart
mbp.setFileName(fds.getName()); // BodyPart
mp.addBodyPart(mbp);
}
file.removeAllElements();
}
msg.setContent(mp); //Multipart
msg.setSentDate(new Date()); //
//
msg.saveChanges();
trans = session.getTransport("smtp");
trans.connect(smtpServer, username, password);
trans.sendMessage(msg, msg.getAllRecipients());
trans.close();
}catch(AuthenticationFailedException e){
map.put("state", "failed");
message=" ! :
"+" !";
e.printStackTrace();
}catch (MessagingException e) {
message=" ! :
"+e.getMessage();
map.put("state", "failed");
e.printStackTrace();
Exception ex = null;
if ((ex = e.getNextException()) != null) {
System.out.println(ex.toString());
ex.printStackTrace();
}
}
//System.out.println("
:"+message);
map.put("message", message);
return map;
}
}
SmtpAuth.java 코드
package mail;
public class SmtpAuth extends javax.mail.Authenticator {
private String username,password;
public SmtpAuth(String username,String password){
this.username = username;
this.password = password;
}
protected javax.mail.PasswordAuthentication getPasswordAuthentication() {
return new javax.mail.PasswordAuthentication(username,password);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
javamail_메일 수신_pop3 수신 메일 디코딩 문제Transport 클래스, Store 클래스: 정보를 보내는 클래스로 Store 클래스와 어떤 의미에서 보면 상반된다.이 종류가 가장 많이 쓰이는 것은send 방법이다.메시지 대상을 설정한 후send(메시지)를 호출...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.