Remove files send through mail

I wan't to remove last 5 and 10 days files from two directory and send the remove files list in mail

Output send through mail

find /kalia/cd/ -type f -mtime +5 exec rm {} \;
find /kalia/uk/ -type f -mtome +10 exec rm {} \;

Output send through mail

File has been deleted

/kalia/cd/a.txt
/kalia/cd/b.txt
/kalia/cd/c.txt
/kalia/uk/g.txt
/kalia/uk/p.txt
/kalia/uk/n.txt

Any attempts / ideas / thoughts from your side?
Did you consider that find allows for multiple actions, i.e. print ing file names along with deleting the respective files?
And, does your find version (which you fail to mention, btw) allow for the -delete action?