web-dev-qa-db-ja.com

Java名前ではなくメール送信者のアドレスが表示される

Javaメールアプリケーションを使用して友人にメールを送信しようとしています。ただし、メールボックスの受信者の列には、送信者の名前ではなく完全な電子メールアドレスが表示されます。さまざまなパラメータを変更しようとしましたが、メールボックスには送信者の名前ではなく完全な電子メールアドレスが表示されます。

このメソッドを使用してメッセージを送信します。

 public void send(String key){
    String to=key;
    String from="mygmailid";
    String subject="wassp";
    String text="Hello";
    Properties props=new Properties();

    props.put("mail.smtp.Host", "smtp.gmail.com");
    props.put("mail.smtp.user", "myname");
    props.put("mail.smtp.socketFactory.port", "465");
    props.put("mail.smtp.socketFactory.class","javax.net.ssl.SSLSocketFactory");
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.port", "465");
    Session mailSession=Session.getDefaultInstance(props);
    Message simpleMessage=new MimeMessage(mailSession);

    InternetAddress fromAddress=null;
    InternetAddress toAddress=null;

    try{
        fromAddress=new InternetAddress(from);
        toAddress=new InternetAddress(to);
    }
    catch(AddressException e){
        e.printStackTrace();
    }

    try{
        simpleMessage.setFrom(fromAddress);
        simpleMessage.setRecipient(RecipientType.TO,toAddress);
        simpleMessage.setSubject(subject);
        simpleMessage.setText(text);

        transport.connect("smtp.gmail.com",465, "[email protected]", "mygmailpassword");
        transport.sendMessage(simpleMessage, simpleMessage.getAllRecipients());
        transport.close();  

    }
    catch(MessagingException e){
        e.printStackTrace();
    }
}

私はこのメソッドを次のように呼び出しています:

public static void main(String[] args) {
    MailSender mailer=new MailSender();
    mailer.send("[email protected]");
}
34
Nelo Angelo

を使用してInternetAddressに名前を設定できます

new InternetAddress("[email protected]", "Your Name");
90
Raghav

InternetAddressの2文字列コンストラクター を使用して、電子メールアドレスと個人の名前の両方を渡す必要があります。結果の電子メールには、Jarrodのような文字列が含まれます。

InternetAddress fromAddress=new InternetAddress("[email protected]", "John Doe");
21
Sarel Botha
    try {

        String from = " EMAIL ID";
        String SMTP_AUTH_PWD = " PASSWORD ";
        Properties props = new Properties();
        props.put("mail.smtp.Host", "smtp.gmail.com");
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.transport.protocol", "smtps");
        props.put("mail.smtps.auth", "true");
        String SMTP_Host_NAME = "smtp.gmail.com";
        int SMTP_Host_PORT = 465;
        javax.mail.Session mailSession = Session.getDefaultInstance(props);

        mailSession.setDebug(true);
        Transport transport = ((javax.mail.Session) mailSession)
                .getTransport();

        javax.mail.Message message = new MimeMessage(mailSession);
        message.setSubject("Testing SMTP-SSL");
        message.setContent("", "text/plain");
        message.addRecipient(javax.mail.Message.RecipientType.TO,
                new InternetAddress(receiver));
        transport.connect(SMTP_Host_NAME, SMTP_Host_PORT, from,
                SMTP_AUTH_PWD);
        message.setFrom(new InternetAddress(from," YOUR PREFERED NAME "));
        message.setSubject(subject);
        BodyPart messageBodyPart = new MimeBodyPart();
        messageBodyPart.setText(body);
        Multipart multipart = new MimeMultipart();
        multipart.addBodyPart(messageBodyPart);
        messageBodyPart = new MimeBodyPart();
        message.setContent(multipart);

        transport.sendMessage(message,
                message.getRecipients(javax.mail.Message.RecipientType.TO));

    }
4
John Davis

Fromフィールドの表示方法は、クライアント固有の実装の詳細です。

通常、送信者が"Sender Name" <[email protected]>の形式の場合、クライアントは設定に応じて正しいことを行います。

一部のクライアントは、アドレス帳情報がない場合、名前情報を推測します。

4
user177800

上記の答えは正しいのですが、動作するためには試してみる必要があります。sendemailwebappデモアプリケーションで動作することがわかりました。

メッセージmsg = new MimeMessage(session);

    try {
        msg.setFrom(new InternetAddress(userName, "YourName"));
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    InternetAddress[] toAddresses = { new InternetAddress(toAddress) };
    msg.setRecipients(Message.RecipientType.TO, toAddresses);
    msg.setSubject(subject);
    msg.setSentDate(new Date());
    msg.setText(message);
3
Dave

Tryブロック内でこのコードを試してください。MimeMessageのsetFrom()メソッド内で名前を初期化できます。

simpleMessage.setFrom(new InternetAddress("Your mail id", "Your name"));

すなわち、

 try{
    simpleMessage.setFrom(new InternetAddress("Your mail id", "Your name"));
    simpleMessage.setRecipient(RecipientType.TO,toAddress);
    simpleMessage.setSubject(subject);
    simpleMessage.setText(text);

    transport.connect("smtp.gmail.com",465, "[email protected]", "mygmailpassword");
    transport.sendMessage(simpleMessage, simpleMessage.getAllRecipients());
    transport.close();  

 }
0
Gayathri Rajan