0

When I move read emails from inbox to a subfolder, it appears as unread email. I would like to move both the email status (read or unread) to subfolder. How can I achieve this? Will this be done in javascript or PHP.

Thanks for your help..

BenI
  • 93
  • 1
  • 8

1 Answers1

0

I have sorted this out..in the moveEmails function in InboundEmail.php, change

$email = new Email();
$email->retrieve($id);
$email->status = 'unread'

to

$email = new Email();
$email->retrieve($id);
$email->status = 'read'
BenI
  • 93
  • 1
  • 8