| @@ -18,7 +18,7 @@ | ||
| 18 | 18 | public static function getFullEmail($email, $name = "") | 
| 19 | 19 |      { | 
| 20 | 20 |          if (!empty($name)) { | 
| 21 | - return "\"" . $name . "\" <" . $email . ">"; | |
| 21 | + return "\"".$name."\" <".$email.">"; | |
| 22 | 22 |          } else { | 
| 23 | 23 | return $email; | 
| 24 | 24 | } | 
| @@ -58,7 +58,7 @@ | ||
| 58 | 58 | $result = $request->postMultiPartForm($message); | 
| 59 | 59 | $resultJson = json_decode($result, true); | 
| 60 | 60 |          if (!isset($resultJson['id'])) { | 
| 61 | -            throw new MailApiException('Mailgun: ' . $resultJson['message']); | |
| 61 | +            throw new MailApiException('Mailgun: '.$resultJson['message']); | |
| 62 | 62 | } | 
| 63 | 63 | |
| 64 | 64 | return true; | 
| @@ -25,7 +25,7 @@ | ||
| 25 | 25 | |
| 26 | 26 | // Fix BCC header because PHPMailer does not send to us | 
| 27 | 27 |          foreach ((array)$envelope->getBCC() as $bccEmail) { | 
| 28 | - $messageParts['header'] .= 'Bcc: ' . $bccEmail . "\n"; | |
| 28 | + $messageParts['header'] .= 'Bcc: '.$bccEmail."\n"; | |
| 29 | 29 | } | 
| 30 | 30 | |
| 31 | 31 |          foreach ($envelope->getTo() as $toEmail) { | 
| @@ -63,7 +63,7 @@ discard block | ||
| 63 | 63 | // Add Blind Carbon Copy | 
| 64 | 64 |          foreach ((array)$envelope->getBCC() as $bccItem) { | 
| 65 | 65 | $bcc = Util::decomposeEmail($bccItem); | 
| 66 | -            $mail->addCustomHeader("Bcc: " . $bcc["email"]); | |
| 66 | +            $mail->addCustomHeader("Bcc: ".$bcc["email"]); | |
| 67 | 67 | } | 
| 68 | 68 | |
| 69 | 69 | // Attachments | 
| @@ -108,7 +108,7 @@ discard block | ||
| 108 | 108 |          if (!empty($this->uri->getUsername())) { | 
| 109 | 109 | $mail->SMTPAuth = true; | 
| 110 | 110 | $mail->Username = $this->uri->getUsername(); // SMTP account username | 
| 111 | - $mail->Password = $this->uri->getPassword(); // SMTP account password | |
| 111 | + $mail->Password = $this->uri->getPassword(); // SMTP account password | |
| 112 | 112 | } | 
| 113 | 113 | |
| 114 | 114 |          if (!$mail->send()) { | 
| @@ -21,7 +21,7 @@ | ||
| 21 | 21 |      { | 
| 22 | 22 | $parts = $this->getMessageEnvelopeParts(); | 
| 23 | 23 | |
| 24 | - return $parts['header'] . $parts['body']; | |
| 24 | + return $parts['header'].$parts['body']; | |
| 25 | 25 | } | 
| 26 | 26 | |
| 27 | 27 | /** |