I suggest adding an IMAP "folder" config option for "bounces" and "unsubscribe" emails to reduce the number of email addresses that we need.
Google is going to start charging many of us $12/month per "user" or email address. I want to get rid of these two:
bounces@mysite.com
unsubscribe@mysite.com
IMAP can download and view individual folders. By default, it accesses the INBOX "folder", but it can also be made to access other folders that the user has set up in the email account.
The laminas library XF uses is set up for folders. Let's use it.
/xenforo/src/vendor/laminas/laminas-mail/src/Protocol/Imap.php
/xenforo/src/vendor/laminas/laminas-mail/src/Storage/Imap.php
To use this,
I would like to think that this wouldn't be too difficult to code. An add-on doesn't seem to be possible.
Cheers!
Google is going to start charging many of us $12/month per "user" or email address. I want to get rid of these two:
bounces@mysite.com
unsubscribe@mysite.com
IMAP can download and view individual folders. By default, it accesses the INBOX "folder", but it can also be made to access other folders that the user has set up in the email account.
The laminas library XF uses is set up for folders. Let's use it.
/xenforo/src/vendor/laminas/laminas-mail/src/Protocol/Imap.php
/xenforo/src/vendor/laminas/laminas-mail/src/Storage/Imap.php
To use this,
- I would change the emails to aliases of another email address (like contact-us@mysite.com)
- Route the messages to two separate folders /bounces and /unsubscribe
I would like to think that this wouldn't be too difficult to code. An add-on doesn't seem to be possible.
Cheers!
Upvote
4