Skip to content

Commit 8433e68

Browse files
committed
fix SMTP password handling. closes #6
1 parent 6234d46 commit 8433e68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/ApiControllers/CommentApiController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ protected function sendNotification(array $data): void
211211
if ($this->app->conf('smtp_user')) {
212212
$mailer->SMTPAuth = true;
213213
$mailer->Username = $this->app->conf('smtp_user');
214-
$mailer->Password = $this->app->conf('smtp_password');
214+
$mailer->Password = $this->app->conf('smtp_pass');
215215
}
216216

217217
if ((bool)$this->app->conf('smtp_verify') === false) {

0 commit comments

Comments
 (0)