Attaching documents like PDFs to Drupal eMails is quite simple. For our specific case we needed to attach PDF documents to Drupal Commerce Message order confirmations.
This can easily be done using the hook below. Simply modify the names and path to the document to attach. That's it!
function MY_MODULE_mail_alter(&$message) {
if ($message['id'] == 'message_notify_commerce_order_order_confirmation') {
$file = file_create_url('public://media/my-document-to-attach.pdf');
$attachment = array(
'filecontent' => file_get_contents($file),
'filename' => 'test.pdf',
'filemime' => 'application/pdf',
);
$message['params']['attachments'][] = $attachment;
}
}
?>