Skip to content

Commit 98a7502

Browse files
committed
No more SendEmailException
Fixes #1405
1 parent 431def1 commit 98a7502

File tree

4 files changed

+14
-37
lines changed

4 files changed

+14
-37
lines changed

CHANGELOG-v3.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Craft CMS 3.0 Working Changelog
77
- `craft\i18n\Formatter::asText` will now format DateTime objects to text.
88
- `craft\feeds\Feeds::getFeedItems()` no longer explicitly sets the cache duration to the `cacheDuration` config setting; it lets the data caching driver decide what the default should be (which is set based on the `cacheDuration` config setting… by default).
99
- The `cacheDuration` config setting can now be set to an integer (number of seconds).
10+
- `craft\mail\Mailer::send()` now returns `false` if the message couldn’t be sent, rather than throwing a `SendEmailException`.
1011
- Updated the Yii Debug Toolbar to 2.0.8.
1112
- Updated d3.js to 4.6.0.0.
1213
- Updated timepicker to 1.11.10.
@@ -18,6 +19,9 @@ Craft CMS 3.0 Working Changelog
1819
- Updated Flysystem to 1.0.35.
1920
- Updated Yii to 2.0.11.2.
2021

22+
### Removed
23+
- Removed `craft\errors\SendEmailException`.
24+
2125
### Fixed
2226
- #1373: Fixed a bug where Assets Indexing utility would generate an erroneous request at the end of the operation.
2327
- #1392: Fixed a JS error that occurred on edit pages with a Color field, unless the `useCompressedJs` config setting was set to `false`.
@@ -26,6 +30,7 @@ Craft CMS 3.0 Working Changelog
2630
- Fixed a bug where entries’ “Title” field would receive two identical validation errors if a brand new entry was immediately saved as a draft, and didn’t have a title yet.
2731
- #1403: Fixed a bug where it was not possible to edit categories on anything but the primary site.
2832
- Fixed a PHP type error that could occur when editing an entry or category, if its corresponding template was `NULL` in the database, for some reason.
33+
- #1405: Fixed an exception that occurred when testing email settings, if the settings weren’t correct.
2934

3035
## 3.0.0-beta.4 - 2017-02-17
3136

src/controllers/UsersController.php

+9-10
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use Craft;
1111
use craft\elements\Asset;
1212
use craft\elements\User;
13-
use craft\errors\SendEmailException;
1413
use craft\errors\UploadFailedException;
1514
use craft\events\LoginFailureEvent;
1615
use craft\events\RegisterUserActionsEvent;
@@ -1046,15 +1045,15 @@ public function actionSaveUser()
10461045
$originalEmail = $user->email;
10471046
$user->email = $user->unverifiedEmail;
10481047

1049-
try {
1050-
if ($isNewUser) {
1051-
// Send the activation email
1052-
Craft::$app->getUsers()->sendActivationEmail($user);
1053-
} else {
1054-
// Send the standard verification email
1055-
Craft::$app->getUsers()->sendNewEmailVerifyEmail($user);
1056-
}
1057-
} catch (SendEmailException $e) {
1048+
if ($isNewUser) {
1049+
// Send the activation email
1050+
$success = Craft::$app->getUsers()->sendActivationEmail($user);
1051+
} else {
1052+
// Send the standard verification email
1053+
$success = Craft::$app->getUsers()->sendNewEmailVerifyEmail($user);
1054+
}
1055+
1056+
if (!$success) {
10581057
Craft::$app->getSession()->setError(Craft::t('app', 'User saved, but couldn’t send verification email. Check your email settings.'));
10591058
}
10601059

src/errors/SendEmailException.php

-24
This file was deleted.

src/mail/Mailer.php

-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
use Craft;
1111
use craft\elements\User;
12-
use craft\errors\SendEmailException;
1312
use craft\events\MailFailureEvent;
1413
use yii\base\InvalidConfigException;
1514
use yii\helpers\Markdown;
@@ -176,8 +175,6 @@ public function send($message)
176175
'variables' => $message->variables,
177176
'error' => $error,
178177
]));
179-
180-
throw new SendEmailException('Error sending email: '.($error ?: 'Unknown'));
181178
}
182179

183180
return $isSuccessful;

0 commit comments

Comments
 (0)