直播系統原始碼,選擇驗證方式時選擇郵箱驗證

zhibo系統開發發表於2022-02-08

直播系統原始碼,選擇驗證方式時選擇郵箱驗證實現的相關程式碼

public class MailUtil {
public static final String HOST = "smtp.163.com";
public static final String PROTOCOL = "smtp";
public static final int PORT = 25;
public static final String FROM = "XXX@163.com";
public static final String PWD = "XXX";
/**
 * 獲取Session
 * @return
 */
private static Session getSession() {
Properties props = new Properties();
props.put("mail.smtp.host", HOST);//設定伺服器地址
props.put("mail.store.protocol" , PROTOCOL);//設定協議
props.put("mail.smtp.port", PORT);//設定埠
props.put("mail.smtp.auth" , true);
Authenticator authenticator = new Authenticator() {
 
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(FROM, PWD);
}
};
Session session = Session.getDefaultInstance(props , authenticator);
return session;
}
public static void send(String toEmail , String content) {
Session session = getSession();
try {
            // Instantiate a message
            Message msg = new MimeMessage(session);
 
            //Set message attributes
            msg.setFrom(new InternetAddress(FROM));
            InternetAddress[] address = {new InternetAddress(toEmail)};
            msg.setRecipients(Message.RecipientType.TO, address);
            msg.setSubject("賬號啟用郵件");
            msg.setSentDate(new Date());
            msg.setContent(content , "text/html;charset=utf-8");
 
            //Send the message
            Transport.send(msg);
        }
        catch (MessagingException mex) {
            mex.printStackTrace();
        }
}

以上就是直播系統原始碼,選擇驗證方式時選擇郵箱驗證實現的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2854852/,如需轉載,請註明出處,否則將追究法律責任。

相關文章