Bulkmail: Use default mail from email and mail from name but still can be changed

This commit is contained in:
johnnyq 2024-01-21 14:25:56 -05:00
parent 782b0cfd96
commit 2ee21c3f9a
1 changed files with 2 additions and 2 deletions

View File

@ -33,11 +33,11 @@ $sql = mysqli_query($mysqli, "SELECT * FROM contacts
<hr>
<div class="form-group">
<input type="text" class="form-control" name="mail_from" placeholder="Email From" required>
<input type="text" class="form-control" name="mail_from" placeholder="Email From" value="<?php echo nullable_htmlentities($config_mail_from_email); ?>" required>
</div>
<div class="form-group">
<input type="text" class="form-control" name="mail_from_name" placeholder="From Name" required>
<input type="text" class="form-control" name="mail_from_name" placeholder="From Name" value="<?php echo nullable_htmlentities($config_mail_from_name); ?>" required>
</div>
<div class="form-group">