4,535 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
2
answers
132
views
imap_utf8 not always converting utf-8 text
I have the following simple script, running under PHP 8.3.6
<?php
$original = '"=?utf-8?Q?part1=40part2.com?=" <[email protected]>' ;
$converted = imap_utf8($original) ;
printf("...
Best practices
0
votes
1
replies
38
views
How to get older emails from email mailbox
I am setting up a client's own mailbox for all emails from his other mailboxes. The problem is that he wants to retrieve all his old emails from January 1, 2024 to the present. I am using Imapflow in ...
4
votes
1
answer
202
views
Javascript interface not downloading IMAP attachments through PHP
I have a webpage in PHP that lets me access an IMAP account. I can fetch the messages fine. But, when I go to download attachments, Firefox opens the download dialog, but immediately after pops an ...
0
votes
1
answer
77
views
Issue with Jakarta Mail - MessageCountAdapter doesn't seem to work
I'm encountering an issue while using Jakarta Mail to fetch emails and capture specific keywords. Here's the details:
The source code is as follows:
package org.example.receiver.kit.component;
import ...
0
votes
1
answer
56
views
outlook.office365.com using OAUTH2 Times Out inside AWS
I have a test app that successfully connects to our outlook.office365.com account via OAUTH2 and returns the number of unprocessed inbox messages, which currently stands at over 57,000.
However, when ...
0
votes
0
answers
40
views
Not able to login using outlook credentials using imap in pycharm
I am trying to read mails from my outlook account using imap. The server name and the port number is correct. The email_id and password is also correct. I am using a personal account. Do you think I ...
1
vote
0
answers
105
views
Can't Connect to IMAP server using Office365 app password and mail
I wrote this code for a company and they are using Office 365 domain.
The code works in gmail.
On Office 365 server it says login error.
Please note:
The credentials are correct.
IMAP and 2FA has ...
2
votes
1
answer
78
views
imaplib2 | Is this behavior correct? The .uid() method returns different values in the tuple
I am not a programming pro, but I managed to find the following feature when using the .uid() method.
If the email address has unread messages that arrived before authorization and the first call to ...
1
vote
0
answers
88
views
Apply CreateRecipient to Outlook Exchange Distribution list using PowerShell
I have this minimal example code.
$targetEmail = Read-Host "Enter the email address:"
$outlook = New-Object -ComObject Outlook.Application
$namespace = $outlook.GetNamespace("MAPI")...
WG-'s user avatar
- 1,088
1
vote
1
answer
88
views
Storing thread specific variables using ExecutorService
Hi there I have an application that connects to n inboxes of users. Since I don't won't to poll new messages I am using the IMAP idle command and a message count listener to listen to new messages.
...
0
votes
0
answers
83
views
Sent emails from Laravel not appearing in Sent folder
I have a CRM section in my Laravel app. In it is the ability to send emails with to, cc, bcc, attachments, body, subject. Users can also choose which account to send this email from. When I was ...
0
votes
0
answers
90
views
How to sync laravel with email services
Idle connection is established successfully with a callback for the new email, but when sending an email to that connected email from another email and being successfully added to the INBOX folder but ...
0
votes
1
answer
135
views
Unable to retrieve email using message id in imap, node js
The Problem:
When I try to search for an email using Message-ID, the search returns zero results.
Even though I explicitly set a Message-ID while sending the email, it only appears inside text/rfc822-...
2
votes
1
answer
205
views
How to search for a specific message with Webklex/PHPIMAP?
I'm having trouble understanding the Webklex/PHPIMAP documentation.
The connection, folder search and message return inside the loop are working, but the search for a specific message without ...
2
votes
1
answer
60
views
Sort IMAP email uids based on data Golang
I am using this IMAP Golang package to fetch recent emails from my gmail. I would like to only get the 50 most recent messages. My current approach is fetching every single email uid. I am using imap....