Contact Form "Reply-to"

Creating and modifying plugins.
Post Reply
chris_at
Regular
Posts: 9
Joined: Tue Oct 18, 2005 3:57 pm
Contact:

Contact Form "Reply-to"

Post by chris_at »

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

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() {
Note that 0) I am not familiar with PHP and 1) Real Men don't test their patches, so use at your own risk...
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Contact Form "Reply-to"

Post by garvinhicking »

Hi!

Thanks a lot for this patch, this has actually been implemented in 1.0-alpha1 a few days ago, already :))

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
chris_at
Regular
Posts: 9
Joined: Tue Oct 18, 2005 3:57 pm
Contact:

Post by chris_at »

Ups :(
Post Reply