Skip to content

Commit b472a1b

Browse files
committed
formatting
1 parent 1563361 commit b472a1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Mail/Transport/MailgunTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = nul
7777
$this->payload($message, $to)
7878
);
7979
} catch (GuzzleException $e) {
80-
throw new Swift_TransportException('Failed to make request to Mailgun API', $e->getCode(), $e);
80+
throw new Swift_TransportException('Request to Mailgun API failed.', $e->getCode(), $e);
8181
}
8282

8383
$messageId = $this->getMessageId($response);

src/Illuminate/Mail/Transport/SesTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = nul
5757
)
5858
);
5959
} catch (AwsException $e) {
60-
throw new Swift_TransportException('Failed to make request to AWS SES API', $e->getCode(), $e);
60+
throw new Swift_TransportException('Request to AWS SES API failed.', $e->getCode(), $e);
6161
}
6262

6363
$messageId = $result->get('MessageId');

0 commit comments

Comments
 (0)