-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to merge multiple email accounts in folder eg inbox #476
Comments
Hi @ssekimuli , Best regards and happy coding, |
let i have two account and i want connect them once
…On Thu, Jul 6, 2023 at 12:34 PM Webklex ***@***.***> wrote:
Hi @ssekimuli <https://github.com/ssekimuli> ,
thanks for posting your question.
I'm not really sure what you are asking.. Please add a brief description
or a theoretical example.
Best regards and happy coding,
—
Reply to this email directly, view it on GitHub
<#476 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AT5WHGENBRDKQIEZDIE77WTXO2BBTANCNFSM6AAAAAA2AA2FUU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Thanks for clarifying. You can configure as many accounts as you like inside your config /** @var \Webklex\PHPIMAP\ClientManager $cm */
/** @var \Webklex\PHPIMAP\Client $client */
$client = $cm->account('account_identifier'); You could also store the account information somewhere else and just create a new instance on the fly if needed: /** @var \Webklex\PHPIMAP\ClientManager $cm */
/** @var \Webklex\PHPIMAP\Client $client */
$client = $cm->make([
'host' => 'somehost.com',
'port' => 993,
'encryption' => 'ssl',
'validate_cert' => true,
'username' => 'username',
'password' => 'password',
'protocol' => 'imap'
]); Best regards & happy coding, |
i want to config two emails accounts at once . let say i have outlook and gmail and i want them to under on folder |
I see, unfortunately that's not possible - or at least not that I know of. The folders e.g. "INBOX" are located on two different servers which don't know of each other and have nothing in common besides their name. If you want to fetch both, you'll have to connect to both and do what ever you like to do to each folder individually :) Best regards & happy coding, |
P.s.: there is something called "shared inbox" but it has nothing to do with this library and I doubt you could create a shared inbox across providers but you never know :) |
getSharedMailbox() do you have this function so that is connect sharedMailbox = $client->getSharedMailbox('sharedinbox'); |
Hi @ssekimuli , Please try to provide a bit more context, code or examples. Tell the world what you are up to :) Best regards & happy coding, |
how to merge multiple email accounts in folder eg inbox
The text was updated successfully, but these errors were encountered: