Jul 17, 2024 2:44 pm
I am using postie to read in email replies and have the post to wpforo.
I am having some trouble setting the author of the reply to the email account sending the reply.
I am currently using this to create a post.
$wpforo->post->add(array(
'forumid' => $forum_id,
'topicid' => $topic_id,
'body' => $content,
'authorid' => $user_id,
));
Do I need to reference the author in another way?