loebpaul
Member
Posted 5 months ago #
I have found a bug in the Email Before Download WordPress 3.1.5 plugin. In the settings page, there is not a field for "email_before_download_email_from", and when you press "Save Changes", the field is cleared in the database. This results in all emails sent from this plugin containing a FROM header of "WordPress".
http://wordpress.org/extend/plugins/email-before-download/
Medu Member
Member
Posted 3 months ago #
I added this small code into the email-before-download.php file:
<tr valign="top">
<th scope="row"><p>4B. From email</p></th>
<td><p><input type="text" size="40" name="email_before_download_email_from" value="<?php echo get_option('email_before_download_email_from'); ?>" />
<br /> <font size="-1"><i>Fill in the from address the emails will be send.</i></font>
</td>
</tr>
I added these below the </tr> tag of 4. forbidden email domains
Possible that the plugin owner will change this on the next update?