Skip to content

Commit

Permalink
Remove duplicate CSS properties #207
Browse files Browse the repository at this point in the history
  • Loading branch information
willbrowningme committed Oct 5, 2021
1 parent 14de415 commit 0478d9e
Show file tree
Hide file tree
Showing 8 changed files with 802 additions and 936 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/ForgotUsernameController.php
Expand Up @@ -39,7 +39,7 @@ public function sendReminderEmail(Request $request)
{
$this->validateEmail($request);

$recipient = Recipient::select(['id', 'email', 'email_verified_at'])->whereNotNull('email_verified_at')->get()->firstWhere('email', $request->email);
$recipient = Recipient::select(['id', 'email', 'email_verified_at'])->whereNotNull('email_verified_at')->get()->firstWhere('email', strtolower($request->email));

if (isset($recipient)) {
$recipient->sendUsernameReminderNotification();
Expand Down
7 changes: 7 additions & 0 deletions app/Mail/ReplyToEmail.php
Expand Up @@ -71,7 +71,14 @@ public function build()

if (config('anonaddy.dkim_signing_key')) {
$this->dkimSigner = new Swift_Signers_DKIMSigner(config('anonaddy.dkim_signing_key'), $this->alias->domain, config('anonaddy.dkim_selector'));
$this->dkimSigner->ignoreHeader('List-Unsubscribe');
$this->dkimSigner->ignoreHeader('Return-Path');
$this->dkimSigner->ignoreHeader('Feedback-ID');
$this->dkimSigner->ignoreHeader('Content-Type');
$this->dkimSigner->ignoreHeader('Content-Description');
$this->dkimSigner->ignoreHeader('Content-Disposition');
$this->dkimSigner->ignoreHeader('Content-Transfer-Encoding');
$this->dkimSigner->ignoreHeader('MIME-Version');
}
} else {
$this->fromEmail = config('mail.from.address');
Expand Down
7 changes: 7 additions & 0 deletions app/Mail/SendFromEmail.php
Expand Up @@ -67,7 +67,14 @@ public function build()

if (config('anonaddy.dkim_signing_key')) {
$this->dkimSigner = new Swift_Signers_DKIMSigner(config('anonaddy.dkim_signing_key'), $this->alias->domain, config('anonaddy.dkim_selector'));
$this->dkimSigner->ignoreHeader('List-Unsubscribe');
$this->dkimSigner->ignoreHeader('Return-Path');
$this->dkimSigner->ignoreHeader('Feedback-ID');
$this->dkimSigner->ignoreHeader('Content-Type');
$this->dkimSigner->ignoreHeader('Content-Description');
$this->dkimSigner->ignoreHeader('Content-Disposition');
$this->dkimSigner->ignoreHeader('Content-Transfer-Encoding');
$this->dkimSigner->ignoreHeader('MIME-Version');
}
} else {
$this->fromEmail = config('mail.from.address');
Expand Down

0 comments on commit 0478d9e

Please sign in to comment.