Sent email - 'Please respond to xxx@mom.gov.sg' message appear

The Visual Basic program uses domino API to send an email to public via the ‘xxx@mom.gov.sg’ lotus email account.

When i opend up the email at the send folder of the ‘xxx@mom.gov.sg’ lotus email account, the

message ‘Please respond to xxx@mom.gov.sg’ wil appear.

Is there anything in the VB program that muse be set so that the message will not appear ? Below are some code fragment.

Call maildoc.ReplaceItemValue(“Principal”, Sender)

Call maildoc.ReplaceItemValue(“SendFrom”, Sender)

Call maildoc.ReplaceItemValue(“From”, Sender)

Call maildoc.ReplaceItemValue(“AltFrom”, Sender)

Call maildoc.ReplaceItemValue(“$UpdatedBy”, Sender)

Call maildoc.ReplaceItemValue(“ModifiedBy”, Sender)

Call maildoc.ReplaceItemValue(“ReplyTo”, Sender)

Call maildoc.ReplaceItemValue(“tmpDisplaySentBy”, Sender)

Call maildoc.ReplaceItemValue(“tmpDisplayFrom_Preview”, Sender)

maildoc.Save True, False

maildoc.Send False

Subject: Sent email - ‘Please respond to xxx@mom.gov.sg’ message appear

Hi,

In your code remove this line:

Call maildoc.ReplaceItemValue(“ReplyTo”, Sender)

Since, this is explicitly saying that the sender may be different from ReplyTo person. The values being the same does not really matter.

HTH,

Sumathi