diff options
| author | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-10-07 18:25:04 +0700 |
|---|---|---|
| committer | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-10-07 18:25:04 +0700 |
| commit | ec5053921c0e858a4c33fb2cddf1152600831f7a (patch) | |
| tree | 710952638574de68f914889f25685eb7a9d7fb2f | |
| parent | dac161140e402d6a2bb1a3b43f951c2943c8f660 (diff) | |
(andri) fix
| -rw-r--r-- | indoteknik_custom/models/letter_receivable.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indoteknik_custom/models/letter_receivable.py b/indoteknik_custom/models/letter_receivable.py index 821825d6..f75af92e 100644 --- a/indoteknik_custom/models/letter_receivable.py +++ b/indoteknik_custom/models/letter_receivable.py @@ -362,11 +362,11 @@ class SuratPiutang(models.Model): 'subject': subject, # Menggunakan subject yang sudah ditentukan di atas 'email_to': self.tujuan_email, 'email_from': 'finance@indoteknik.co.id', - # 'email_cc': ",".join(sorted(set(cc_list))), + 'email_cc': ",".join(sorted(set(cc_list))), 'email_cc': 'finance@indoteknik.co.id', 'body_html': body_html, # Menggunakan body_html yang sudah ditentukan di atas 'attachments': [(attachment.name, attachment.datas)], - # 'reply_to': 'finance@indoteknik.co.id', + 'reply_to': 'finance@indoteknik.co.id', } template.with_context(mail_post_autofollow=False).send_mail( |
