How to send mail using find command?

Hello,
I wanted to send mail to multiple receiptant by using uuencode with find command.
I have used the below find command to search a file, which generating daily at the particular time. [Between 06.40 to 06.50 AM].

find . -type f -mtime -1 -printf '%f %TH:%TM\n' | awk '$NF>"06:40" && $NF<"06:50" {print $1}'

I wanted to send mail within find command.

Please suggest

Thanks-
Pokhraj

find . -type f -mtime -1 -printf '%f %TH:%TM\n' | awk '$NF>"06:40" && $NF<"06:50" {print $1}' | mailx -s <subject> user1@host,user2@host2

Thanks for the update.
I wanted to attach those files in email, which can be get at find command.

Thanks-
Pokhraj