diff --git a/src/PHPMailer/PHPMailer.php b/src/PHPMailer/PHPMailer.php
index 3feae4e..6cf107e 100644
--- a/src/PHPMailer/PHPMailer.php
+++ b/src/PHPMailer/PHPMailer.php
@@ -613,7 +613,7 @@ class PHPMailer {
     if ($this->SingleTo === TRUE) {
       foreach ($this->SingleToArray as $key => $val) {
         if (!@$mail = popen($sendmail, 'w')) {
-          throw new PHPMailerException(t('Could not execute: !smail', array('!smail' => $this->Sendmail)), self::STOP_CRITICAL);
+          throw new PHPMailerException(t('Could not execute: @smail', array('@smail' => $this->Sendmail)), self::STOP_CRITICAL);
         }
         fputs($mail, "To: " . $val . "\n");
         fputs($mail, $header);
@@ -623,13 +623,13 @@ class PHPMailer {
         $isSent = ($result == 0) ? 1 : 0;
         $this->doCallback($isSent, $val, $this->cc, $this->bcc, $this->Subject, $body);
         if ($result != 0) {
-          throw new PHPMailerException(t('Could not execute: !smail', array('!smail' => $this->Sendmail)), self::STOP_CRITICAL);
+          throw new PHPMailerException(t('Could not execute: @smail', array('@smail' => $this->Sendmail)), self::STOP_CRITICAL);
         }
       }
     }
     else {
       if (!@$mail = popen($sendmail, 'w')) {
-        throw new PHPMailerException(t('Could not execute: !smail', array('!smail' => $this->Sendmail)), self::STOP_CRITICAL);
+        throw new PHPMailerException(t('Could not execute: @smail', array('@smail' => $this->Sendmail)), self::STOP_CRITICAL);
       }
       fputs($mail, $header);
       fputs($mail, $body);
@@ -638,7 +638,7 @@ class PHPMailer {
       $isSent = ($result == 0) ? 1 : 0;
       $this->doCallback($isSent, $this->to, $this->cc, $this->bcc, $this->Subject, $body);
       if ($result != 0) {
-        throw new PHPMailerException(t('Could not execute: !smail', array('!smail' => $this->Sendmail)), self::STOP_CRITICAL);
+        throw new PHPMailerException(t('Could not execute: @smail', array('@smail' => $this->Sendmail)), self::STOP_CRITICAL);
       }
     }
     return TRUE;
@@ -719,7 +719,7 @@ class PHPMailer {
     }
     $smtp_from = ($this->Sender == '') ? $this->From : $this->Sender;
     if (!$this->smtp->Mail($smtp_from)) {
-      throw new PHPMailerException(t('The following From address failed: !from', array('!from' => $smtp_from)), self::STOP_CRITICAL);
+      throw new PHPMailerException(t('The following From address failed: @from', array('@from' => $smtp_from)), self::STOP_CRITICAL);
     }
 
     // Attempt to send attach all recipients
@@ -1238,7 +1238,7 @@ class PHPMailer {
         else {
           @unlink($file);
           @unlink($signed);
-          throw new PHPMailerException(t('Signing Error: !err', array('!err' => openssl_error_string())));
+          throw new PHPMailerException(t('Signing Error: @err', array('@err' => openssl_error_string())));
         }
       } catch (PHPMailerException $e) {
         $body = '';
