3
I am testing EvenNews 2.1 which I believe is the last version that was released. I found that sometimes the newsletter was added to the archive, sometimes not.
If you do get it to work, you will need the code-fix below to populate the message field when opening a news item from the archive in admin:
evennews/admin/index.php
around line 1007
Change:
$sform->addElement(new XoopsFormDhtmlTextArea(_ADM_EVENNEWS_MESSAGE, 'mail_mess', '', 10, 60), true);
to:
$sform->addElement(new XoopsFormDhtmlTextArea(_ADM_EVENNEWS_MESSAGE, 'mail_mess', $arr['message'], 10, 60), true);