From e4ad8715562e365707707830f87aa933fc013c6a Mon Sep 17 00:00:00 2001 From: polarbearing Date: Wed, 29 Apr 2020 18:22:26 +0200 Subject: [PATCH] RFC-formatted complainant address for easy copy/paste Add fully formatted complainant address to mail body for easy copy/pasting in responses as discussed in the dwg. ( $reply_address can potentially be used for a Reply-To header ) --- cookbooks/dmca/files/default/html/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cookbooks/dmca/files/default/html/index.php b/cookbooks/dmca/files/default/html/index.php index 33c28006e..d81deb70a 100644 --- a/cookbooks/dmca/files/default/html/index.php +++ b/cookbooks/dmca/files/default/html/index.php @@ -10,6 +10,8 @@ function process_data ($values) { $email_body = 'OpenStreetMap - Claim of Copyright Infringement form:'."\n\n"; $email_body .= 'Automated Email - Form Posted.'."\n\n"; $email_body .= print_r($values, true); + $reply_address = $values['name_first'].' '.$values['name_last'].' <'.$values['email'].'>'; + $email_body .= 'Formatted address: '.$reply_address."\n\n"; mail('dmca@osmfoundation.org','OSM Claim of Copyright Infringement', $email_body, 'From: OSMF Copyright Form ', '-fdmca@osmfoundation.org'); } ?> -- 2.43.2