mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
fix: disable tracking clicks in Mailgun email configuration
This commit is contained in:
parent
2c39ccd2af
commit
c22d74d41e
1 changed files with 1 additions and 0 deletions
|
|
@ -34,6 +34,7 @@ const sendEmailViaMailgun = async ({ to, from, subject, html }) => {
|
|||
formData.append('to', to);
|
||||
formData.append('subject', subject);
|
||||
formData.append('html', html);
|
||||
formData.append('o:tracking-clicks', 'no');
|
||||
|
||||
try {
|
||||
const response = await axios.post(`${mailgunHost}/v3/${mailgunDomain}/messages`, formData, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue