Email Send for Student Create Not Working
Brought to you by:
beauhuber
If you create a new student and try to send them the welcome email, it does not get sent. The email confirmation page says "No receipiant address found in header".
The problem was in admin/student_update_f.php.
Line 87 needed to be changed to:
<input name="ADD" type="hidden" id="ADD" value="<?php echo $emailaddress; ?>" /></td>
Also, in line 142 of add_student_db.php the same type correction needs to be made:
<input name="ADD" type="hidden" id="ADD" value="<?php echo $email; ?>" /></td>
Both fixes are now committed to CVS.