multiple files to be attached

Hi all,

Am in need of attaching multiple files of similar pattern?
For example the files like
a1.txt
b1.txt
c1.txt
can be reffered as *1.txt
Can anyone help me in attaching the files of similar pattern without mentioning their names completely.

cat *1.txt > new_file

or

paste *1.txt > new_file

Hi,
you can acheive that with the following command

$ ls *1.txt|zip source -@
  adding: a1.txt (deflated 90%)
  adding:  c1.txt (deflated 25%)
  adding:  d1.txt (deflated 25%)

thanks,
venkat

Thanx but i need to attach in the mail as attachments