Hi,
I need to send an auto reply to people that send email to a mail in database. I want the sender to receive an auto reply from mail in database@domain.com Is this possible?
I have written one simple agent, senders are able to receive auto reply, but instead it is delivering on behalf of the agent signer.
Before posting, I did search in forum, but i couldnot draw any relevant information.
Any help of suggestion will help me a lot.
TIA…GOV
Subject: Auto Reply Simple Agent
You want to sent the field principal field on the e-mail.
Search this form there will be lots of examples.
Subject: RE: Auto Reply Simple Agent
Hi Christian,
thank you for your response.
Thing is,
for example - If I receive any mails, it will send an auto reply to the sender. The reply sent to sender is not on behalf of me, it is with one of the user name who has created the agent.
Besides I had written lotus script for the above and signed with generic id, even though no difference.
Please let me know if you have any idea.
Subject: RE: Auto Reply Simple Agent
Yes, exactly. (I think we are agreeing)
You code that creates the autoresponse e-mail just needs to set the Principal field, on the outgoing memo, to whatever value you want, like database title or “Auto Reply System”
I have a number of systems that use this functionality. You code should look something like this:
(Code was typed from memory - therefore there maybe syntax or logic errors)
Set memo = mailDB.createdocument
With Memo
.Form = "Memo"
.Subject = "RE: " + InComingMail.Subject(0)
.Principal = "Auto Reply System"
.SendTo = InComingMail.From(0)
...
End With
…
Call Memo.Send(…)