Author |
|
julien Newbie
Joined: 14 December 2006 Location: Switzerland
Online Status: Offline Posts: 1
|
Posted: 14 December 2006 at 5:44am | IP Logged
|
|
|
Hello,
I'm trying to use the ConfirmReceipt property, but i never received a receive confirmation.
here is an example.
Code:
smtp.Connect();
smtp.From.Email = "test@fintel.ch";
smtp.To.Add(textBoxTo.Text);
smtp.Subject = textBoxSubject.Text;
smtp.BodyPlainText = textBoxBody.Text;
smtp.Message.ConfirmReceipt = "test@fintel.ch";
try
{
smtp.Send();
}
catch (Exception ex)
{
MessageBox.Show("Error in sending the message : " + ex.Message);
}
finally
{
smtp.Disconnect();
}
|
|
|
I received the email but not the receive confirmation (i send the both on the same address)
On the same mail server, if i try to send an email with Outlook it's ok, i receive the confirmation.
Thanks
Julien
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 14 December 2006 at 10:24am | IP Logged
|
|
|
We've tried to send a message with ConfirmRead and ConfirmReceipt to our local mail server via MailBee.NET Objects and successfully received both receipt confirmation and read confirmation. We also tried to do this via MS Outlook and the result was the same.
Did you try to send the message via MS Outlook (from MS Office package) or MS Outlook Express (standard Windows mailer)?
MS Outlook Express doesn't support requesting receipt confirmation, it supports requesting read confirmation only.
Receipt confirmation is sent by a mail server, while read confirmation by a mail client when user has read the message.
Could you please specify both ConfirmRead and ConfirmReceipt properties in your application powered by MailBee.NET Objects, send the message and look if at least one of them is sent.
Code:
smtp.Connect();
smtp.From.Email = "test@fintel.ch";
smtp.To.Add(textBoxTo.Text);
smtp.Subject = textBoxSubject.Text;
smtp.BodyPlainText = textBoxBody.Text;
smtp.Message.ConfirmReceipt = "test@fintel.ch";
smtp.Message.ConfirmRead = "test@fintel.ch";
try
{
smtp.Send();
}
catch (Exception ex)
{
MessageBox.Show("Error in sending the message : " + ex.Message);
}
finally
{
smtp.Disconnect();
} |
|
|
If this doesn't help, could you please provide us with a test account on your mail server? Thus, we would be able to reproduce and investigate the issue. You can send this info to support@afterlogic.com.
Best regards,
Andrew
|
Back to Top |
|
|