Subject: | reply_to not working |
Setting the Reply-To address using the reply_to option does not work. Adding it through
header control works.
Does not work:
email {
to => config->{sales_contact},
from => config->{default_contact},
subject => 'New Contact - ' . params->{name},
message => $message,
reply_to => params->{email},
}
Works:
email {
to => config->{sales_contact},
from => config->{default_contact},
subject => 'New Contact - ' . params->{name},
message => $message,
headers => {
"Reply-To" => params->{email},
}
}