The #original_sender tag is not detected when email encoding is base64
Hello,
I believe the #original_sender tag is not detected when emails "content-transfer-encoding" is base64.
I've been sending mails through SQL and when it's received by Ticketing platform, the original message is detected to be encoded in base64 and #original_sender tag is being ignored.
This is how I send mails, when "body_format" is set to "HTML" it also fails.
- EXEC msdb.dbo.sp_send_dbmail
- @profile_name = 'ProfileName',
- @recipients = 'user1@domain.com',
- @subject = 'TEST',
- @body = '#original_sender {user2@domain.com}',
- @body_format = 'TEXT';
Thank you!