• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

[solved]Feature request:Add an option : Sent BCC email.

madlaxcb

Chevereto Member
💡Describe your idea

Add an option : Sent BCC email.

👏Where did you saw this?

I build my own email server with Mail-in-a-Box .Then i found all my user signup email can sent successfully,but i can't find the email in the Sent mail folder .

I found this :

Show mails sent with SMTP in SentMail #1370

SMTP has no access to your incoming mail; it is simply for outgoing mail. There is no easy way for SMTP to save copies like this.


Yes, Thunderbird can automatically save a copy of all mail it sends, but it uses IMAP to do that.


One thing you could do is to BCC yourself to have a copy of direct-SMTP emails also be sent to you. That would place them in your inbox, but perhaps a filter can move it to Sent for you automatically.


There are also other ways: https://www.chilkatsoft.com/p/p_461.asp
But, as you can see if you look at their code examples, they all send the email via SMTP and then save a copy via IMAP.
 
Last edited:
Well.I solved the problem myself.

Just add one line in /app/lib/functions.php

under line 149

replace the "BCC@your.email","your BCC name" with your own.That's all.

[CODE lang="php" highlight="2"] $mail->Password = getSettings()['email_smtp_server_password'];
$mail->AddBCC("BCC@your.email","your BCC name");[/CODE]
 
I hope @Rodolfo can adopt this suggestion, otherwise I need to modify it manually every time I update the version.
I hope not, in fact, I hope that with V4 plugging system others can provide functionality. The whole idea is to stop depending on me.
 
Back
Top