You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (in_array(request()->userAgent(), [
'Mozilla/5.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246 Mozilla/5.0'
]) {
$event->skip = true;
}
is the right approach to skip open/click tracking for anti-virus/spam filters. Some user agents could belong to legitimate users, leading to incorrect skips or counts. Also, this approach may miss a significant number of bots or email clients that perform automated actions.
I wonder if
is the right approach to skip open/click tracking for anti-virus/spam filters. Some user agents could belong to legitimate users, leading to incorrect skips or counts. Also, this approach may miss a significant number of bots or email clients that perform automated actions.
I was wondering if we could experiment with:
I am planning to experiment with this; however, I am open for feedback, suggestions, and recommendations.
The text was updated successfully, but these errors were encountered: