INFRA-132 - Change "else if" to "elseif"
[civicrm-core.git] / CRM / Mailing / BAO / Spool.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Mailing_BAO_Spool extends CRM_Mailing_DAO_Spool {
36
37 /**
100fef9d 38 * Class constructor
6a488035 39 */
00be9182 40 public function __construct() {
6a488035
TO
41 parent::__construct();
42 }
43
44 /**
45 * Store Mails into Spool table.
46 *
77b97be7 47 * @param $recipient
90c8230e
TO
48 * @param array $headers
49 * The string of headers to send with the mail.
6a488035 50 *
90c8230e
TO
51 * @param string $body
52 * The full text of the message body, including any.
6a488035
TO
53 * Mime parts, etc.
54 *
100fef9d 55 * @param int $job_id
77b97be7
EM
56 *
57 * @internal param mixed $recipients Either a comma-seperated list of recipients
58 * (RFC822 compliant), or an array of recipients,
59 * each RFC822 valid. This may contain recipients not
60 * specified in the headers, for Bcc:, resending
61 * messages, etc.
62 *
6a488035
TO
63 * @return mixed Returns true on success, or a CRM_Eore_Error
64 * containing a descriptive error message on
65 * failure.
6a488035 66 */
35f7561f 67 public function send($recipient, $headers, $body, $job_id = NULL) {
6a488035
TO
68 $headerStr = array();
69 foreach ($headers as $name => $value) {
70 $headerStr[] = "$name: $value";
71 }
72 $headerStr = implode("\n", $headerStr);
73
74 if ( is_null( $job_id ) ) {
75 // This is not a bulk mailing. Create a dummy job for it.
76
77 $session = CRM_Core_Session::singleton();
78 $params = array();
79 $params['created_id'] = $session->get('userID');
80 $params['created_date'] = date('YmdHis');
81 $params['scheduled_id'] = $params['created_id'];
82 $params['scheduled_date'] = $params['created_date'];
6a488035
TO
83 $params['is_completed'] = 1;
84 $params['is_archived'] = 1;
85 $params['body_html'] = htmlspecialchars( $headerStr ) . "\n\n" . $body;
86 $params['subject'] = $headers['Subject'];
87 $params['name'] = $headers['Subject'];
88 $ids = array();
89 $mailing = CRM_Mailing_BAO_Mailing::create($params, $ids);
90
91 if ( empty( $mailing ) || is_a( $mailing, 'CRM_Core_Error' ) ) {
92 return PEAR::raiseError( 'Unable to create spooled mailing.' );
93 }
94
9da8dc8c 95 $job = new CRM_Mailing_BAO_MailingJob();
6a488035
TO
96 $job->is_test = 0; // if set to 1 it doesn't show in the UI
97 $job->status = 'Complete';
98 $job->scheduled_date = CRM_Utils_Date::processDate(date('Y-m-d'), date('H:i:s'));
99 $job->start_date = $job->scheduled_date;
100 $job->end_date = $job->scheduled_date;
101 $job->mailing_id = $mailing->id;
102 $job->save();
103 $job_id = $job->id; // need this for parent_id below
104
9da8dc8c 105 $job = new CRM_Mailing_BAO_MailingJob();
6a488035
TO
106 $job->is_test = 0;
107 $job->status = 'Complete';
108 $job->scheduled_date = CRM_Utils_Date::processDate(date('Y-m-d'), date('H:i:s'));
109 $job->start_date = $job->scheduled_date;
110 $job->end_date = $job->scheduled_date;
111 $job->mailing_id = $mailing->id;
112 $job->parent_id = $job_id;
113 $job->job_type = 'child';
114 $job->save();
115 $job_id = $job->id; // this is the one we want for the spool
116
117 if ( is_array( $recipient ) ) {
118 $recipient = implode( ';', $recipient );
119 }
120 }
121
122 $session = CRM_Core_Session::singleton();
123
124 $params = array(
125 'job_id' => $job_id,
126 'recipient_email' => $recipient,
127 'headers' => $headerStr,
128 'body' => $body,
129 'added_at' => date("YmdHis"),
130 'removed_at' => NULL,
131 );
132
133 $spoolMail = new CRM_Mailing_DAO_Spool();
134 $spoolMail->copyValues($params);
135 $spoolMail->save();
136
137 return TRUE;
138 }
139}