Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Dancer-Plugin-Email CPAN distribution.

Report information
The Basics
Id: 63706
Status: resolved
Priority: 0/
Queue: Dancer-Plugin-Email

People
Owner: Nobody in particular
Requestors: jda [...] tapodi.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.1201
Fixed in: (no value)



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}, } }
On Tue Dec 07 11:50:24 2010, JAUER wrote: Show quoted text
> 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}, > } > } >
Thanks for finding this bug and for providing the correct header to use in the ticket. I have just fixed this and uploaded it to CPAN. -Naveed Massjouni