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 6714993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:33:38+00:00 2026-05-26T08:33:38+00:00

In My Web application i want to send mails. Is There any way to

  • 0

In My Web application i want to send mails. Is There any way to do it with Spring MVC ? And what’s the best way to do it ?

Thank you

  • 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-26T08:33:39+00:00Added an answer on May 26, 2026 at 8:33 am

    You can use Spring’s mail abstraction layer to easily send emails. Define the following beans in your applicationContext.xml

    <!-- Mail sender bean -->
    <bean id="mailSender" 
            class="org.springframework.mail.javamail.JavaMailSenderImpl">          
    <property name="host" value="my.smtp.host" />
    <property name="username" value="my_username" />
    <property name="password" value="my_password" />
    </bean>
    
    <!-- Simple mail template -->
    <bean id="basicEmailMessage" 
            class="org.springframework.mail.SimpleMailMessage">
        <property name="from">
            <value>whateverSenderAddress</value>
         </property>
     </bean>
    
     <!-- Your service with sender and template injected -->
     <bean id="mySendMailService" 
            class="mypackage.MySendMailService">
        <property name="mailSender">
        <ref bean="mailSender" />
        </property>
        <property name="emailTemplate">
            <ref bean="basicEmailMessage" />
        </property>
     </bean>
    

    Then, in mypackage.MySendMailService:

    public class SendMailService {
        private MailSender mailSender;
        private SimpleMailMessage emailTemplate;
        public void sendEmail(String to, String from, String subject, String body) 
                             throws MailException {
            SimpleMailMessage message = new SimpleMailMessage(this.emailTemplate);
            message.setTo(to);
            message.setFrom(from);
            message.setSubject(subject);
            message.setText(body);
            mailSender.send(message);
        }
    
        public void setMailSender(MailSender mailSender) {
            this.mailSender = mailSender;
        }
        public void setEmailTemplate(SimpleMailMessage emailTemplate) {
            this.emailTemplate = emailTemplate;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I created a google web application from which I want to send emails. I've
I have created blank Asp.Net-MVC 3 web application and want to write my own
I have C# web application that I want it to send out an email
in my web-application I want to send mail for users according to pre selected
In my web application I want to send some text back in the addActionError(User
I have a MVC web application on an intranet and want to be able
I am building one web application, nodejs is my webserver. I want to send
In an Azure-based web application, I want a client to be able to send
I'm developing a Web application with PHP 5.3.3. I want it to send confirmation
In this web application I want to send an sms to a mobile ann.

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.