- 🇺🇸United States jenlampton
I think this issue is actually a duplicate of https://www.drupal.org/project/contact_reply_to/issues/2993547 → .
The line indicated has a typo in it,
1contact_name
should have been!contact_name
I don't understand the value of the double assignment where the "from" address is altered by this module. The code is:
$message['from'] = $message['headers']['From'] = t('"Contact form at !site_name" <!site_mail>', array('1contact_name' => $contact_name, '!contact_email' => $contact_email, '!site_name' => $site_name, '!site_mail' => $site_mail));
It was causing the following from address to be created:
"Kontaktný formulár zo stránky Na =?UTF-8?B?@nabezky.sk
The site name is "Na bežky!"
For now, I changed the line to:
$message['from'] = $message['headers']['From'] = $site_mail;
...and apparently the site email address shows on the delivered emails in the From field, which I think is the desired outcome.
I can create a patch also for this little problem if the module creator/maintainer thinks the solution is acceptable.
Closed: duplicate
1.2
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I think this issue is actually a duplicate of https://www.drupal.org/project/contact_reply_to/issues/2993547 → .
The line indicated has a typo in it, 1contact_name
should have been !contact_name