Setting reply-to address on MSG file

Last post 07-22-2011, 9:16 AM by saqib.razzaq. 4 replies.
Sort Posts: Previous Next
  •  10-27-2010, 7:28 AM 265839

    Setting reply-to address on MSG file Java

    I have been evaluating the Aspose.Netwok library for Java. Our requirement is to set a reploy-to address for the messages we create. Is that possible?

     

    Many thanks in advance

    mm

     

     

    Filed under: .MSG
     
  •  10-28-2010, 6:57 AM 266098 in reply to 265839

    Re: Setting reply-to address on MSG file Java

    Hi Michael,

    Thanks for your inquiry.

    I am sorry, reply to address cannot be specified currently. I have logged this issue for investigation (ID: 21127). We will check if it would be possible to specify the reply to in the MSG file and will get back to you.

    Best Regards,
    Saqib Razzaq
    Support Developer, Aspose Sialkot Team
    http://www.aspose.com
    Your File Format Experts
     
  •  01-04-2011, 3:01 PM 276440 in reply to 266098

    Re: Setting reply-to address on MSG file .NET

    Hi,

    I am also having the same issue.  I looked at the .MSG file that was created and noticed that the PR_REPLY_RECIPIENT_ENTRIES & PR_REPLY_RECIPIENT_NAMES properties on the message were not set.  Can these be added in?

    Thanks,

    Jason Woods


    Jason Woods
    Sr. Developer
    Applied Systems
    Filed under: .MSG
     
  •  01-05-2011, 4:58 PM 276660 in reply to 276440

    Re: Setting reply-to address on MSG file Java

    Hi,

    We are working on this issue and hopefully a fix would be available in near future. We will inform you as soon as it gets fixed. Sorry for the inconvenience. 

    Best Regards,
    Saqib Razzaq
    Support Developer, Aspose Sialkot Team
    http://www.aspose.com
    Your File Format Experts
     
  •  07-22-2011, 9:16 AM 317984 in reply to 276660

    Re: Setting reply-to address on MSG file Java

    Hi,

    MailMessage.setReplyToList() method is added in the latest release, which takes email address(es).

    MailMessage message = new MailMessage();
    MailAddressCollection addresses = new MailAddressCollection();
    addresses.add("reply1@domain.com");
    addresses.add("reply2@domain.com");
    message.setReplyToList(addresses);

    Best Regards,
    Saqib Razzaq
    Support Developer, Aspose Sialkot Team
    http://www.aspose.com
    Your File Format Experts
     
View as RSS news feed in XML