Contact Form "Reply-to"
Posted: Thu Nov 03, 2005 8:53 pm
Microbug: The Reply-to header contains the correct e-mail address, but the wrong name (blog's name instead of the sender's name belonging to the e-mail).
diff -u
Note that 0) I am not familiar with PHP and 1) Real Men don't test their patches, so use at your own risk...
diff -u
Code: Select all
--- serendipity_event_contactform.php.old 2006-10-14 12:39:05.459739080 +0200
+++ serendipity_event_contactform.php 2005-11-03 20:40:51.459146256 +0100
@@ -119,7 +119,7 @@
. "\n"
. "\n" . '----';
- return serendipity_sendMail($to, $subject, $text, $fromEmail);
+ return serendipity_sendMail($to, $subject, $text, $fromEmail, NULL, $fromName);
}
function checkSubmit() {