A Laravel package that enables detailed tracking of emails sent via AWS SES. Supports tracking deliveries, opens, rejects, bounces, complaints and link clicks
17
stars
5
forks
source link
email links: change from varchar to text for original_url #22
the laravel_ses_email_links table needs the original_url column changed from varchar to text.
There have been cases where I send out signed s3 URLs to my users and these URLs can be over 500 characters long.
Currently the link is being concat to the varchar(191) limit so the link they receive is invalid.
the laravel_ses_email_links table needs the
original_url
column changed fromvarchar
totext
. There have been cases where I send out signed s3 URLs to my users and these URLs can be over 500 characters long. Currently the link is being concat to the varchar(191) limit so the link they receive is invalid.