Reputation: 575
Im sending my universal links through brevo (Sendinblue). It redirects and sends email fine, but leaves a 404 page in safari with the error:
build-verify URL: build UrlParms: build-verify URL: cleanURL: invalid URL: host missing
Upvotes: 3
Views: 411
Reputation: 131
If you pass the htmlContent string when sending a template email, avoid using the quotes when defining the href
URL.
Example:
<a href=https://stackoverflow.com> stackoverflow </a>
Upvotes: 0