Articles

Affichage des articles associés au libellé send mail desktop app

How to send mail by mutiple People using JAVA

Image
Requirement:  1) You need to have JAVA  installed in your PC 2) You need to configure JAVA in your PC, to test if JAVA in configured in your PC. Open Command Prompt in type: JAVAC if you have a response means JAVA it's installed 3) You need a JAVA MAIL library you can download it here: https://www.oracle.com/technetwork/java/javamail/index-138643.html 4) You need to add this code in your IDE. can be (BLUE J, NETBEANS or ECLIPSE) 5)You need an INTERNET connection 6) COPY and PASTE this code in your IDE: import java.util.Properties; import javax.mail.Message.RecipientType; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress ;  import javax.mail.internet.MimeMessage; import java.util.Properties; import javax.mail.Message.RecipientType; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddr...