juhasev / laravel-ses

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

Closed nicholaszuccarelli closed 1 year ago

nicholaszuccarelli commented 1 year ago

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.

juhasev commented 1 year ago

Do you want to submit a PR? I am happy to merge that in.

nicholaszuccarelli commented 1 year ago

Pull request created