Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Fix missing SendGrid configuration form elements
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Apr 15, 2015
1 parent bc3b7cd commit 22cabdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/mail/configs/module.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
fullname = "Mail"
description = "Send informational messages using email"
category = "Messaging"
uuid = b902fded-6820-4dad-8094-e9ef13143e32
uuid = "b902fded-6820-4dad-8094-e9ef13143e32"
version = "1.0.0"
2 changes: 1 addition & 1 deletion modules/mail/forms/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ public function init()
$submit = new Zend_Form_Element_Submit('submit');
$submit->setLabel('Save');

$this->addElements(array($csrf, $provider, $fromAddress, $addressVerification, $smtpHost, $smtpPort, $smtpUseSsl, $smtpUsername, $smtpPassword, $submit));
$this->addElements(array($csrf, $provider, $fromAddress, $addressVerification, $sendGridUsername, $sendGridPassword, $smtpHost, $smtpPort, $smtpUseSsl, $smtpUsername, $smtpPassword, $submit));
}
}

0 comments on commit 22cabdc

Please sign in to comment.