You can use something like:
If LCase$(Channel) = "etail" Then
or:
If strcomp(Channel, "eTail", vbtextcompare) = 0 Then
or stick:
Option Compare Text
at the top of each module if you're lazy.