Sending a direct message works almost the same as posting a status.
$twitteroauth->post('statuses/update', array('status' => 'status text here'));
$twitteroauth->post('direct_messages/new', array('text' => 'dm text here', 'screen_name' => 'recipients screen_name'));
source
share