Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase;
import javax.activation.*;
public class SendMail2
{
public static void postMail( String recipient,
String subject,
String message, String from )
throws MessagingException
{
Properties props = new Properties();
props.put("mail.store.protocol", "pop3");
props.put("mail.transport.protocol", "smtp");
props.put("mail.user", "");
props.put("mail.pop3.host", "pop.gmx.net");
props.put("mail.smtp.host", "mail.gmx.net");
props.put("User", "blabla");
props.put("Password", "blabla");
Session session = Session.getDefaultInstance( props );
Message msg = new MimeMessage( session );
InternetAddress addressFrom = new InternetAddress( from );
msg.setFrom( addressFrom );
InternetAddress addressTo = new InternetAddress( recipient );
msg.setRecipient( Message.RecipientType.TO, addressTo );
msg.setSubject( subject );
msg.setContent( message, "text/plain" );
Transport.send( msg );
}
public static void main( String args[] ) throws Exception
{
postMail( "bla@gmx.de",
"Tolles Buch",
"Wow. Das Buch ist schön zu lesen",
"bla@gmx.de");
}
}