android 傳送QQ郵箱
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class SendQQMailUtil {
public static void main(String[] args) throws AddressException,MessagingException {
Properties properties = new Properties();
properties.put("mail.transport.protocol", "smtp");// 連線協議
properties.put("mail.smtp.host", "smtp.qq.com");// 主機名
properties.put("mail.smtp.port", 465);// 埠號
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.ssl.enable", "true");// 設定是否使用ssl安全連線 ---一般都使用
properties.put("mail.debug", "true");// 設定是否顯示debug資訊 true 會在控制檯顯示相關資訊
// 得到回話物件
Session session = Session.getInstance(properties);
// 獲取郵件物件
Message message = new MimeMessage(session);
// 設定發件人郵箱地址
message.setFrom(new InternetAddress("
// 設定收件人郵箱地址
message.setRecipients(Message.RecipientType.TO, new InternetAddress[]{new InternetAddress("[email protected]"),new InternetAddress("[email protected]"),new InternetAddress("[email protected]")});
//message.setRecipient(Message.RecipientType.TO, new InternetAddress("
// 設定郵件標題
message.setSubject("xmqtest");
// 設定郵件內容
message.setText("郵件內容郵件內容郵件內容xmqtest");
// 得到郵差物件
Transport transport = session.getTransport();
// 連線自己的郵箱賬戶
transport.connect("[email protected]", "xxxxxxxxxxxxx");// 密碼為QQ郵箱開通的stmp服務後得到的客戶端授權碼
// 傳送郵件
transport.sendMessage(message, message.getAllRecipients());
transport.close();
}
}
以上程式碼來自:https://www.cnblogs.com/xmqa/p/8458300.html
這段程式碼 用單純的java程式直接就可以用了 但是在android中 transport.connect() 這一句會出錯 因為android不支援在主執行緒中有網路連線操作 所以要新建一個執行緒進行操作
還有163郵箱的服務 但是還沒有試
但是出現錯誤:Could not connect to SMTP host: smtp.qq.com, port: 465, response: -1
原因:465埠是為SMTPS(SMTP-over-SSL)協議服務開放的,這是SMTP協議基於SSL安全協議之上的一種變種協議。
解決:加上如下程式碼
properties.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
解決方法來源:https://blog.csdn.net/u012424783/article/details/79429621
過程中我還遇到過兩個問題 一個報錯:Program type already present......
這個是引用了兩個相同的但是名字不同的第三方jar包 去掉一個就好了
還有一個問題報錯:missing INTERNET permission 這個是沒有給網路訪問許可權 需要在AndroidManifest.xml中新增<uses-permission android:name="android.permission.INTERNET" /> 就可以了
剛搞安卓沒幾天 好多事情都不懂 嘻嘻