fix email from field
in the DB the field is from_email and not fromEmail
This commit is contained in:
parent
2dd17108dd
commit
5192cbc944
@ -16,7 +16,7 @@
|
|||||||
$smtpPort = $row["smtp_port"];
|
$smtpPort = $row["smtp_port"];
|
||||||
$smtpUsername = $row["smtp_username"];
|
$smtpUsername = $row["smtp_username"];
|
||||||
$smtpPassword = $row["smtp_password"];
|
$smtpPassword = $row["smtp_password"];
|
||||||
$fromEmail = $row["fromEmail"] ?? "wallos@wallosapp.com";
|
$fromEmail = $row["from_email"] ?? "wallos@wallosapp.com";
|
||||||
} else {
|
} else {
|
||||||
echo "Notifications are disabled. No need to run.";
|
echo "Notifications are disabled. No need to run.";
|
||||||
}
|
}
|
||||||
@ -87,4 +87,4 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user