Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4619546
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:26:20+00:00 2026-05-22T02:26:20+00:00

We are currently working on a defect to allow special symbols also to be

  • 0

We are currently working on a defect to allow special symbols also to be seen in email subject. The email is text/html mime type.

Currently, if the subject should have a heart symbol it is shown as “&heart” but in the email body a “heart” symbol is shown.

Can someone help us with the solution to have special symbols also part of subject?

Here is the code snippet.

public boolean send(String to, String from, String subject, String templatePath, Map map) {
// create a mime message using the mail sender implementation
MimeMessage mimeMessage = mailSender.createMimeMessage();

// create the message using the specified template
MimeMessageHelper helper;
try
{

  helper = new MimeMessageHelper(mimeMessage, true, "UTF-8");
  helper.setTo(to);
  helper.setSubject(subject);
  helper.setFrom(from);

  String text = VelocityEngineUtils.mergeTemplateIntoString(engine, templatePath, map);
  helper.setText(text, true);
  send(mimeMessage);
  log.debug("in send  at start" + this.getClass().getName()
            + ":SUCCESS: Sendig mail to" + to + " from " + from + " subject "
            + subject);
} catch (MessagingException e)
{
  throw new MailPreparationException("unable to create the mime message helper", e);
} catch (Exception e)
{
  log.debug("in send  at start" + this.getClass().getName() + ":Failed sending mail"
            + to + " from " + from + " subject " + subject);
  // throw new
  // MailPreparationException("unable to create the mime message helper",
  // e);
}
return false;

}
public boolean send(MimeMessage mimeMessage) throws Exception {

try
{

  Multipart multipart = new MimeMultipart();
  BodyPart bodyPart = new MimeBodyPart();
  multipart.addBodyPart(bodyPart);
  bodyPart.setContent(mimeMessage.getContent(), "text/html");
  mimeMessage.setContent(multipart);
  mailSender.send(mimeMessage);
} catch (Exception e)
{
  log.error("in send  at start" + this.getClass().getName() + ":Failed sending mail"
            + e.getMessage());

  // e.printStackTrace();
  throw e;
  // return false;
}
return true;

}

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T02:26:21+00:00Added an answer on May 22, 2026 at 2:26 am
      public static String HTMLDecode(String encodedHTML) {
    
            return encodedHTML.replaceAll("¡", "\u00A1")
                              .replaceAll("¢", "\u00A2")
                              .replaceAll("£", "\u00A3")
                              .replaceAll("¤", "\u00A4")
                              .replaceAll("¥", "\u00A5")
                              .replaceAll("¦", "\u00A6")
                              .replaceAll("§", "\u00A7")
                              .replaceAll("¨", "\u00A8")
                               ........
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently working on an application that should be able to detect wifi
I am currently working on a mobile application framework written in HTML 5, CSS3
Currently working on a script to ping every host on a /24 subnet, and
currently working on generation elliptic curve for ECDSA and met some problems: An elliptic
Currently working in the deployment of an OFBiz based ERP, we've come to the
Currently working on a VBScript to automate some of the dirty PST ingestion work
Currently working on a site built in Django and i'm getting an issue when
Currently working with NSURLConnection. Found a great website showing important delegate methods coming with
I currently working on an issue tracker for my company to help them keep
Am currently working on an application that requires users to submit posts and comments

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.