136 lines
4.9 KiB
PHP
136 lines
4.9 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------+
|
|
| CiviCRM version 4.7 |
|
|
+--------------------------------------------------------------------+
|
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
|
+--------------------------------------------------------------------+
|
|
| This file is a part of CiviCRM. |
|
|
| |
|
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
|
| under the terms of the GNU Affero General Public License |
|
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
|
| |
|
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
|
| See the GNU Affero General Public License for more details. |
|
|
| |
|
|
| You should have received a copy of the GNU Affero General Public |
|
|
| License and the CiviCRM Licensing Exception along |
|
|
| with this program; if not, contact CiviCRM LLC |
|
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
|
+--------------------------------------------------------------------+
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @package CRM
|
|
* @copyright CiviCRM LLC (c) 2004-2017
|
|
*/
|
|
class CRM_Mailing_BAO_Spool extends CRM_Mailing_DAO_Spool {
|
|
|
|
/**
|
|
* Class constructor.
|
|
*/
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Store Mails into Spool table.
|
|
*
|
|
* @param string|array $recipient
|
|
* Either a comma-seperated list of recipients
|
|
* (RFC822 compliant), or an array of recipients,
|
|
* each RFC822 valid. This may contain recipients not
|
|
* specified in the headers, for Bcc:, resending
|
|
* messages, etc.
|
|
* @param array $headers
|
|
* The array of headers to send with the mail.
|
|
*
|
|
* @param string $body
|
|
* The full text of the message body, including any mime parts, etc.
|
|
*
|
|
* @param int $job_id
|
|
*
|
|
* @return bool|CRM_Core_Error
|
|
* true if successful
|
|
*/
|
|
public function send($recipient, $headers, $body, $job_id = NULL) {
|
|
$headerStr = array();
|
|
foreach ($headers as $name => $value) {
|
|
$headerStr[] = "$name: $value";
|
|
}
|
|
$headerStr = implode("\n", $headerStr);
|
|
|
|
if (is_null($job_id)) {
|
|
// This is not a bulk mailing. Create a dummy job for it.
|
|
|
|
$session = CRM_Core_Session::singleton();
|
|
$params = array();
|
|
$params['created_id'] = $session->get('userID');
|
|
$params['created_date'] = date('YmdHis');
|
|
$params['scheduled_id'] = $params['created_id'];
|
|
$params['scheduled_date'] = $params['created_date'];
|
|
$params['is_completed'] = 1;
|
|
$params['is_archived'] = 1;
|
|
$params['body_html'] = htmlspecialchars($headerStr) . "\n\n" . $body;
|
|
$params['subject'] = $headers['Subject'];
|
|
$params['name'] = $headers['Subject'];
|
|
$ids = array();
|
|
$mailing = CRM_Mailing_BAO_Mailing::create($params, $ids);
|
|
|
|
if (empty($mailing) || is_a($mailing, 'CRM_Core_Error')) {
|
|
return PEAR::raiseError('Unable to create spooled mailing.');
|
|
}
|
|
|
|
$job = new CRM_Mailing_BAO_MailingJob();
|
|
$job->is_test = 0; // if set to 1 it doesn't show in the UI
|
|
$job->status = 'Complete';
|
|
$job->scheduled_date = CRM_Utils_Date::processDate(date('Y-m-d'), date('H:i:s'));
|
|
$job->start_date = $job->scheduled_date;
|
|
$job->end_date = $job->scheduled_date;
|
|
$job->mailing_id = $mailing->id;
|
|
$job->save();
|
|
$job_id = $job->id; // need this for parent_id below
|
|
|
|
$job = new CRM_Mailing_BAO_MailingJob();
|
|
$job->is_test = 0;
|
|
$job->status = 'Complete';
|
|
$job->scheduled_date = CRM_Utils_Date::processDate(date('Y-m-d'), date('H:i:s'));
|
|
$job->start_date = $job->scheduled_date;
|
|
$job->end_date = $job->scheduled_date;
|
|
$job->mailing_id = $mailing->id;
|
|
$job->parent_id = $job_id;
|
|
$job->job_type = 'child';
|
|
$job->save();
|
|
$job_id = $job->id; // this is the one we want for the spool
|
|
|
|
if (is_array($recipient)) {
|
|
$recipient = implode(';', $recipient);
|
|
}
|
|
}
|
|
|
|
$session = CRM_Core_Session::singleton();
|
|
|
|
$params = array(
|
|
'job_id' => $job_id,
|
|
'recipient_email' => $recipient,
|
|
'headers' => $headerStr,
|
|
'body' => $body,
|
|
'added_at' => date("YmdHis"),
|
|
'removed_at' => NULL,
|
|
);
|
|
|
|
$spoolMail = new CRM_Mailing_DAO_Spool();
|
|
$spoolMail->copyValues($params);
|
|
$spoolMail->save();
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
}
|