uuencode mailx - send multiple emails

The following is an extract from one of my Shell Scripts which uses uuencode and mailx to send an email with multiple attachements:

uuencode $LOG_REPORT $(basename $LOG_REPORT)
uuencode $HTML_FILE $(basename $HTML_FILE )
) | if [ $ENV = 1 ]
then mailx -b "$COPY_TO" -s "$SUBJECT" -r "$MAIL_FROM" "$MAIL_TO"
else mailx -s "$SUBJECT" -r "$MAIL_FROM" "$MAIL_TO_TEST"
fi

However I need to send another (separate) email from within the same shell script also using uuencode and mailx. Does anyone know if this is possible? If I duplicate the above syntax it still only sends one email ...

if you want to send another email.. then you must have some value differ..
either subject or content or recipients.. if everything is same and you just want to add the recipients.. just modify your "$MAIL_TO" and/or "$MAIL_TO_TEST"

Thanks anchal_khare

I modified the email subject on the second emailing code and it worked.