Giter Club home page Giter Club logo

Comments (3)

robertotru avatar robertotru commented on August 16, 2024

What have you tried? Please show me the code.

from spring-boot-email-tools.

Zeuzif avatar Zeuzif commented on August 16, 2024

@component
public class SendMail {
@Autowired
public EmailService emailService;

public void sendEmail(ByteArrayInputStream out,String enseignantMail) throws UnsupportedEncodingException {
	DefaultEmailAttachment attachment = null;
	try {
		attachment = DefaultEmailAttachment.builder().attachmentName("Nouvelle_Demande.pdf")
				.attachmentData(IOUtils.toByteArray(out)).build();
	} catch (IOException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}
	final Email email = DefaultEmail.builder()
			.from(new InternetAddress(enseignantMail, enseignantMail))
			.to(Lists.newArrayList(new InternetAddress("[email protected]", "password")))
			.subject("Laelius de amicitia")
			.body("Firmamentum autem stabilitatis constantiaeque eius, quam in amicitia quaerimus, fides est.").attachment(attachment)
			.encoding("UTF-8").build();
	
	
	emailService.send(email);
}

}

it's ok thank u very much

from spring-boot-email-tools.

robertotru avatar robertotru commented on August 16, 2024

Well, when you use the builder returned from DefaultEmail.builder(), don't you have any method called attachment that accepts an object of type EmailAttachment?

Anyway, all the examples in the example folder which use a template have an attachment. E.g. for Thymeleaf https://github.com/ozimov/spring-boot-email-tools/blob/master/examples/sending-mime-email-with-thymeleaf-example/src/main/java/com/test/TestService.java

I'll consider this question closed :)

from spring-boot-email-tools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.