Add reply to header

This commit is contained in:
phl0 2022-12-29 18:10:51 +01:00
parent 93b1f847a3
commit 5ba33a020a
No known key found for this signature in database
GPG key ID: 48EA1E640798CA9A

View file

@ -166,6 +166,7 @@ class Oqrs extends CI_Controller {
$this->email->from('noreply@cloudlog.co.uk', 'Cloudlog');
$this->email->to($email);
$this->email->reply_to($this->security->xss_clean($postdata['email']), strtoupper($data['callsign']));
$this->email->subject('Cloudlog OQRS from ' . strtoupper($data['callsign']));
$this->email->message($message);