Hello Kirby People! I recently found an issue in a contact form…The from (sender) and to are the same, which is rejected by many mail systems. I was thinking hard coding a unique sender address in my contact.php (controller), unless there is a more “Kirby” way to do this -
$form = uniform('contactform', array(
'required' => array(
'name' => '',
'email' => 'email',
'text' => ''
),
'actions' => array(
array(
'_action' => 'email',
'to' => $page->email(),
'sender' => $page->email(),