We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e7efa commit 464a071Copy full SHA for 464a071
src/Mail/exceptions.php
@@ -13,28 +13,34 @@
13
14
15
/**
16
- * Exception thrown when a mail sending error is encountered.
+ * Failed to send the email.
17
*/
18
class SendException extends Nette\InvalidStateException
19
{
20
}
21
22
23
24
- * SMTP mailer exception.
+ * Failed to communicate with the SMTP server.
25
26
class SmtpException extends SendException
27
28
29
30
31
+/**
32
+ * All configured mailers failed to send the email.
33
+ */
34
class FallbackMailerException extends SendException
35
36
/** @var SendException[] */
37
public array $failures;
38
39
40
41
42
+ * Failed to create or verify the email signature.
43
44
class SignException extends SendException
45
46
0 commit comments