Delivery-Receipt notification

View: New views
1 Messages — Rating Filter:   Alert me  

Delivery-Receipt notification

by satheeshsamiappan () :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi All,

I have a scenario like mentioned below.

I send a mail through java application.Once i send a mail i need to get a delivery success mail in case if it is a success delivery.
Im able to get a read reciept when the reciever gets the mail and reads the email. But not able to get a success delivery notification.

I tried the below code
msg.addHeader("Return-Receipt-To", <sender address>);
msg.setNotifyOptions(SMTPMessage.NOTIFY_SUCCESS);
msg.setSendPartial(true);
msg.setReturnOption(SMTPMessage.RETURN_FULL);

Can anyone help me in resolving this issue?