You have to work on it. First, it clearly looks like base64 with trailing = omitted. So make a table of email addresses to base64 decodes. Look for a correlation between email address length and encrypted data length. See how many starting bytes in common you have in the output compared to how many starting bytes you have in common in the input.
If you get stuck, post a question showing what you have already and where you got stuck. Here are a few of the encrypts converted into hex, which is the form you should use to try to analyze them:
$ echo "uwwmXH6KGgVLjpnoWCk9I2A+" | base64 -d | od -x
0000000 0cbb 5c26 8a7e 051a 8e4b e899 2958 233d
0000020 3e60
$ echo "uwwmcv7JoND9WE6xwaXdN6fLXaecRPqf+m6WmqE=" | base64 -d | od -x
0000000 0cbb 7226 c9fe d0a0 58fd b14e a5c1 37dd
0000020 cba7 a75d 449c 9ffa 6efa 9a96 00a1
$ echo "uwAm5NXph0c9hkFK" | base64 -d | od -x
0000000 00bb e426 e9d5 4787 863d 4a41
=omitted. – David Schwartz Jan 20 at 19:07