Hello
Yes, I solved this problem.
You need to add the following code to the plugins/newsletter/email/blocks/posts/block.php file:
$posts = array_reverse($posts);
Add this code before the block:
if ($posts) {
$out[‘subject’] = $posts[0]->post_title;
}
The array with posts will be reversed.