Working!!!!
only one more thing: is adding a extra line at begining
<div class=”WordSection1″>
<p class=”MsoNormal”></p>
<p class=”MsoNormal”>Test change author</p>
Sended email:
author: 4
Test change author
first of all thank’s fot your help
Im trying sending a email to add a post, especify the author, for example
at body email expecify user_id:
author : 3
where 3 is user_id
hi, first of all i’m beginner…
in filterpostie.php i added
add_filter(‘postie_author’, ‘my_filterAuthor’);
function my_filterAuthor($userId) {
$my_tags = array(‘1’, ‘3’, ‘4’);
foreach ($my_tags as $my_tag) {
if (stripos($post[‘user_ID’], $my_tag) !== false)
array_push($post[‘user_ID’], $my_tag);
}
return $userId
}