diff --git a/system/Email/Email.php b/system/Email/Email.php index 14268ea87182..b886d07fdc72 100644 --- a/system/Email/Email.php +++ b/system/Email/Email.php @@ -1708,7 +1708,7 @@ protected function spoolEmail() $success = $this->{$method}(); } catch (ErrorException $e) { $success = false; - log_message('error', 'Email: ' . $method . ' throwed ' . $e); + log_message('error', 'Email: ' . $method . ' threw ' . $e); } if (! $success) { @@ -2265,7 +2265,7 @@ public function __destruct() } catch (ErrorException $e) { $protocol = $this->getProtocol(); $method = 'sendWith' . ucfirst($protocol); - log_message('error', 'Email: ' . $method . ' throwed ' . $e); + log_message('error', 'Email: ' . $method . ' threw ' . $e); } } }