[Change request] Update mail_to arguments to be similar like link_to

I am using rails for several years right now, but every time when I use “mail_to” helper with name I have tendency to put name like first attribute and email like second. It is because in my eyes mail_to should be similar like link_to where name and then path is standard syntax right now.

I propose to change it so it will work like that:

mail_to(“some@email.com”) => some@email.com

mail_to(“link text”, “some@email.com”) => link text

What you think? Do you have same feeling about it?

Thanks.

Daniel