मैं एक HTML ईमेल कैसे भेजूँ?


117

मैंने JMS का उपयोग करके अपने वेब एप्लिकेशन में सफलतापूर्वक ईमेल भेजा है, लेकिन परिणाम केवल सादे पाठ में प्रदर्शित होता है। मैं चाहता हूं कि सामग्री HTML प्रदर्शित करने में सक्षम हो। मैं यह कैसे करुं? यहाँ मेरे पास लगभग है:

Message msg = new MimeMessage(mailSession);
try{
    msg.setSubject("Test Notification");
    msg.setRecipient(Message.RecipientType.TO, new InternetAddress(sentTo, false));
    String message = "<div style=\"color:red;\">BRIDGEYE</div>";
    msg.setContent(message, "text/html; charset=utf-8");
    msg.setSentDate(new Date());
    Transport.send(msg);
}catch(MessagingException me){
    logger.log(Level.SEVERE, "sendEmailNotification: {0}", me.getMessage());
}

जवाबों:


265

Javadoc के अनुसार, MimeMessage#setText()एक डिफ़ॉल्ट माइम सेट करता है text/plain, जबकि आपको आवश्यकता होती है text/html। इसके बजाय उपयोग करें MimeMessage#setContent()

message.setContent(someHtmlMessage, "text/html; charset=utf-8");

अतिरिक्त विवरण के लिए, देखें:


धन्यवाद, पहले तो मैंने ध्यान से नहीं पढ़ा, मेरे पास सेटटेक्स्ट और सेट-कॉन्टेंट एक साथ हैं, इसलिए यह काम नहीं करता है, लेकिन अब सेटटेक्स्ट () को बाहर निकालने के बाद, यह अब काम करता है। धन्यवाद।
थांग फाम


13

यदि आप Google ऐप इंजन / जावा का उपयोग कर रहे हैं, तो निम्नलिखित का उपयोग करें ...

MimeMessage msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(SENDER_EMAIL_ADDRESS, "Admin"));
msg.addRecipient(Message.RecipientType.TO,
                 new InternetAddress(toAddress, "user");

msg.setSubject(subject,"UTF-8");

Multipart mp = new MimeMultipart();
MimeBodyPart htmlPart = new MimeBodyPart();
htmlPart.setContent(message, "text/html");
mp.addBodyPart(htmlPart);
msg.setContent(mp);
Transport.send(msg);

msg.setSubject(subject,"UTF-8");काम नहीं करता। यह होना चाहिएmsg.setSubject(subject);
फेजर खान


5

JavaMail संस्करण 1.4 के बाद से, setTextउप-विधि को स्वीकार करने का एक अधिभार है ।

// Passing null for second argument in order for the method to determine
// the actual charset on-the fly.
// If you know the charset, pass it. "utf-8" should be fine
msg.setText( message, null, "html" );



0

आप Google (जीमेल) खाते का उपयोग करके ईमेल भेजने के लिए एक पूर्ण और बहुत ही सरल जावा वर्ग पा सकते हैं, जावा एप्लिकेशन का उपयोग करके ईमेल संदेश भेजें

यह निम्नलिखित गुणों का उपयोग करता है

Properties props = new Properties();
  props.put("mail.smtp.auth", "true");
  props.put("mail.smtp.starttls.enable", "true");
  props.put("mail.smtp.host", "smtp.gmail.com");
  props.put("mail.smtp.port", "587");

2
यह सवाल का जवाब नहीं देता। ओपी विशेष रूप से HTML ईमेल भेजने के लिए कह रहा था।
बैसिनेटर

0

"LoginVo.htmlBody (messageBodyPart);" इसमें html स्वरूपित डिज़ाइन की गई जानकारी होगी, लेकिन मेल में इसे प्राप्त नहीं किया जाएगा।

जावा - STRUTS2

package com.action;
import javax.mail.Multipart;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import com.opensymphony.xwork2.Action;
import com.bo.LoginBo;
import com.manager.AttendanceManager;
import com.manager.LoginManager;
import com.manager.SSLEmail;
import com.vo.AttendanceManagementVo;
import com.vo.LeaveManagementVo;
import com.vo.LoginVo;
import com.sun.corba.se.impl.protocol.giopmsgheaders.Message;
import com.sun.xml.internal.messaging.saaj.packaging.mime.internet.MimeBodyPart;

public class InsertApplyLeaveAction implements Action {
private AttendanceManagementVo attendanceManagementVo;

public AttendanceManagementVo getAttendanceManagementVo() {
    return attendanceManagementVo;
}

public void setAttendanceManagementVo(
        AttendanceManagementVo attendanceManagementVo) {
    this.attendanceManagementVo = attendanceManagementVo;
}

@Override
public String execute() throws Exception {
    String empId=attendanceManagementVo.getEmpId();
    String leaveType=attendanceManagementVo.getLeaveType();
    String leaveStartDate=attendanceManagementVo.getLeaveStartDate();
    String leaveEndDate=attendanceManagementVo.getLeaveEndDate();
    String reason=attendanceManagementVo.getReason();
    String employeeName=attendanceManagementVo.getEmployeeName();
    String manageEmployeeId=empId;
    float totalLeave=attendanceManagementVo.getTotalLeave();
    String leaveStatus=attendanceManagementVo.getLeaveStatus();
//  String approverId=attendanceManagementVo.getApproverId();
    attendanceManagementVo.setEmpId(empId);
    attendanceManagementVo.setLeaveType(leaveType);
    attendanceManagementVo.setLeaveStartDate(leaveStartDate);
    attendanceManagementVo.setLeaveEndDate(leaveEndDate);
    attendanceManagementVo.setReason(reason);
    attendanceManagementVo.setManageEmployeeId(manageEmployeeId);
    attendanceManagementVo.setTotalLeave(totalLeave);
    attendanceManagementVo.setLeaveStatus(leaveStatus);
    attendanceManagementVo.setEmployeeName(employeeName);

    AttendanceManagementVo attendanceManagementVo1=new AttendanceManagementVo();
    AttendanceManager attendanceManager=new AttendanceManager();    
    attendanceManagementVo1=attendanceManager.insertLeaveData(attendanceManagementVo);
    attendanceManagementVo1=attendanceManager.getApproverId(attendanceManagementVo);
    String approverId=attendanceManagementVo1.getApproverId();
    String approverEmployeeName=attendanceManagementVo1.getApproverEmployeeName();
    LoginVo loginVo=new LoginVo();
    LoginManager loginManager=new LoginManager();
    loginVo.setEmpId(approverId);
    loginVo=loginManager.getEmailAddress(loginVo);
    String emailAddress=loginVo.getEmailAddress();
    String subject="LEAVE IS SUBMITTED FOR AN APPROVAL BY THE  - " +employeeName;
//  String body =   "Hi "+approverEmployeeName+" ," + "\n" + "\n" +
//          leaveType+" is Applied for "+totalLeave+" days by the  " +employeeName+ "\n" + "\n" +
//          " Employee Name: " + employeeName +"\n" +
//          " Applied Leave Type: " + leaveType +"\n" +
//          " Total Days: " + totalLeave +"\n" + "\n" +
  //        " To view Leave History, Please visit the employee poratal or copy and paste the below link in your browser: " + "\n" +  

  //        " NOTE : This is an automated message. Please do not reply."+ "\n" +  "\n" +                        

    Session session = null;

    MimeBodyPart messageBodyPart = new MimeBodyPart();
    MimeMessage message = new MimeMessage(session);
    Multipart multipart = new MimeMultipart();

    String htmlText = ("<div style=\"color:red;\">BRIDGEYE</div>");
    messageBodyPart.setContent(htmlText, "text/html");

    loginVo.setHtmlBody(messageBodyPart);

    message.setContent(multipart);
    Transport.send(message);


    loginVo.setSubject(subject);
//  loginVo.setBody(body);
    loginVo.setEmailAddress(emailAddress);
    SSLEmail sSSEmail=new SSLEmail();
    sSSEmail.sendEmail(loginVo);
    return "success";
 }

 }

0

मैंने पाया कि इस तरह से यह सभी सीएसएस आदिम के लिए काम नहीं करता है

हेडर प्रॉपर्टी "कंटेंट-टाइप" को "टेक्स्ट / html" पर सेट करके

mimeMessage.setHeader("Content-Type", "text/html");

अब मैं सामान की तरह कर सकते हैं

mimeMessage.setHeader("Content-Type", "text/html");

mimeMessage.setText ("`<html><body><h1 style =\"color:blue;\">My first Header<h1></body></html>`")

सादर


0

आप उपयोग कर सकते हैं setText (java.lang.String पाठ, बूलियन एचटीएमएल) से MimeMessageHelper:

MimeMessage mimeMsg = javaMailSender.createMimeMessage();
MimeMessageHelper msgHelper = new MimeMessageHelper(mimeMsg, false, "utf-8");
boolean isHTML = true;
msgHelper.setText("<h1>some html</h1>", isHTML);

लेकिन आपको इसकी आवश्यकता है:

mimeMsg.saveChanges();

इससे पहले:

javaMailSender.send(mimeMsg);
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.