Author |
|
manigmv Newbie
Joined: 30 September 2008 Location: India
Online Status: Offline Posts: 31
|
Posted: 18 November 2008 at 4:14am | IP Logged
|
|
|
Hello,
I want to catch all the bounce mail id's using catch all box method for bulk mail sending.
mailer.AddJob("1", bounce_customerid@domain.com, null, table);
the above code is used to add the job, table contain the mail address,i want to add the customer id's in appropriate customer bounce id's,please adivce how to add the customer id in above code?
Thanks
Manicustomerid
|
Back to Top |
|
|
manigmv Newbie
Joined: 30 September 2008 Location: India
Online Status: Offline Posts: 31
|
Posted: 18 November 2008 at 4:33am | IP Logged
|
|
|
manigmv wrote:
Hello,
I want to catch all the bounce mail id's using catch all box method for bulk mail sending.
mailer.AddJob("1", bounce_customerid |
|
|
@domain.com, null, table);
the above code is used to add the job, table contain the mail address,i want to add the customer id's in appropriate customer bounce id's,please adivce how to add the customer id in above code?
Thanks
Mani
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 18 November 2008 at 6:49am | IP Logged
|
|
|
If we understood you correctly, all you need is to specify customer's id in email address designed for processing bounce message via catch-all mailbox. This may be achieved as follows:
Code:
mailer.AddJob("1", "bounce_" + customerid + "@domain.com", null, table); |
|
|
Regards,
Igor
|
Back to Top |
|
|