We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When sending an encoded URL as part of the email content, the URL is decoded when received.
Sample email content: <!DOCTYPE html> <html> <body> <h1>Email heading</h1> <a href='https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUChWcga5UyJjArDj-9yBoeyw'>Some link</a> </body> </html>
Email content received: <!DOCTYPE html> <html> <body> <h1>Email heading</h1> <a href='https://www.youtube.com/channel/UChWcga5UyJjArDj-9yBoeyw'>Some link</a> </body> </html>
The text was updated successfully, but these errors were encountered:
#3 updating Readme
4d3f09d
No branches or pull requests
When sending an encoded URL as part of the email content, the URL is decoded when received.
Sample email content:
<!DOCTYPE html>
<html>
<body>
<h1>Email heading</h1>
<a href='https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUChWcga5UyJjArDj-9yBoeyw'>Some link</a>
</body>
</html>
Email content received:
<!DOCTYPE html>
<html>
<body>
<h1>Email heading</h1>
<a href='https://www.youtube.com/channel/UChWcga5UyJjArDj-9yBoeyw'>Some link</a>
</body>
</html>
The text was updated successfully, but these errors were encountered: