I am currently using this script to send clients mails. But the "From" name in my inbox shows: fullhouseproject1@gmail.com. I'd like to set this name to Full House. How do i do that?
public Mail(Speler speler) throws MessagingException {
    final String username = "fullhouseproject1@gmail.com";
    final String password = "password";
    Properties props = new Properties();
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.starttls.enable", "true");
    props.put("mail.smtp.host", "smtp.gmail.com");
    props.put("mail.smtp.port", "587");
    Session session = Session.getInstance(props,
            new javax.mail.Authenticator() {
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(username, password);
                }
            });
    Message message = new MimeMessage(session);
    message.setFrom(new InternetAddress("Full House"));
    message.setRecipients(Message.RecipientType.TO,
            InternetAddress.parse(speler.email));
    message.setSubject("Bevestiging van betaling " + "- Toernooi: " + speler.ToernooiID);
    message.setText("Geachte heer/mevrouw " + speler.naam + ","
            + "\n\n Uw betaling voor toernooi: " + speler.ToernooiID + " is geaccepteerd."
            + "\n\n Met vriendelijke groet,"
            + "\n Full House");
    Transport.send(message);
    System.out.println("Done");
}
}