59,239 questions
0
votes
1
answer
41
views
Can cloud email services or desktop email clients visit a verification link prematurely?
Say I send an email that contains a link with a verification token, as it often happens for email subscription confirmation emails.
Is it possible that the cloud email service or a desktop agent would ...
0
votes
0
answers
33
views
Error received when CC recipients are added in win32com using python
I want to send automated mails from my outlook to some email addresses using python win32com.
This is the code I am using -
def Emailer(text, subject, recipient):
import win32com.client as win32
...
0
votes
0
answers
50
views
SMTP mail failing on AWS EC2
I am working on a reset password feature for my web application and am using SMTP to send the reset emails. The functionality works perfectly fine when I run it on my local machine. However, when I ...
0
votes
1
answer
77
views
Send template e-mail (.msg) through SMTP with inline images
I have an e-mail (newsletter) as .msg file which I would like to send through SMTP via Python.
I have trouble embedding the images of the original e-mail in the e-mail which I sent via SMTP. They keep ...
0
votes
0
answers
164
views
Sending large attachments with MS Graph API
I came accrosss below article about sending large attachments with the MS Graph API:
https://learn.microsoft.com/en-us/graph/outlook-large-attachments?tabs=http
Basically, if I understand well, I have ...
0
votes
1
answer
68
views
Authenticate Azure Email client before sending email
I have code to send email from python azure email client.
client = EmailClient.from_connection_string(
"https://mydomain.communication.azure.com/;accesskey=XXXXXXXXXX"
)
...
...
...
1
vote
1
answer
117
views
Have Outlook 2013 and Outlook 2024 installed. I wrote a C# APP that uses MAPI to open Outlook but it only finds the 2013 install
My 2013 install of Outlook used to host an Epix email account and an Outlook account. The Outlook 2013 app stopped connecting with Outlook email account so I installed Outlook 2024 version 1.2024.1216....
0
votes
0
answers
48
views
AWS SES managed IP pool - Sender reputation when there's not enough volume for a specific ISP
I'm considering SES's managed IP pool feature to isolate sender reputation between different domains within the same account. I understand that I need to provide enough volume to build up sender ...
1
vote
1
answer
88
views
Email Sent success when i using laravel queue but in cosnole it return fail laravel Queue
I am woring with laravel queue for sending mail to multiple users but when i run command
laravel queue:work
But it getting fail after running but email i recive in mail box so, how can fix this if ...
-1
votes
1
answer
34
views
"to" keyword is not working while sending email
I'm trying to send an email in Laravel, but I'm encountering an issue when using the to keyword in the email. The email doesn't send as expected, and I suspect it's because to is a reserved keyword in ...
0
votes
1
answer
379
views
Send email using new Outlook
I open a UserForm VidEmailForm which gets variables ccPeeps, VidEmailSubject, and VidEmailLink.
This looks correct on .Display. However, when I hit Send it doesn't send.
I tried .Save which does save ...
0
votes
1
answer
31
views
Unable to send emails from local server with Cpanel
I am not able to send emails for all Cpanel accounts. It fails trying to send the emails and then they has the message of "max defers and failures per hour (5/5 100%) allowed.". Can any one ...
1
vote
1
answer
71
views
Parsing broken multipart/mixed email
I'm trying to use perl Email::MIME to capture the multipart/mixed portion of an email into a buffer. I have a script that I've been using for a long time that is now having a problem with a particular ...
0
votes
0
answers
36
views
Image Resizing Challenge in MSO Outlook 2016
I am working on creating a hero email module, (Polaroid style with text and CTA below the hero image.) but I'm encountering an issue with the image not fitting properly inside the container in MSO ...
0
votes
0
answers
51
views
custom li css for mail
I'm trying to design a mailchimp agenda template for someone else that don't have experience in coding. So I need to apply general css in style balise so he can manipulate the content in the text ...
0
votes
2
answers
178
views
How to apply filter on sent items in Graph API
This is my code file where I am trying to add filters on inbox and sent items using Microsoft graph API:
const GraphApiTest = ({ email }) => {
const emailsPerPage = 5;
const [inboxPage, ...
0
votes
1
answer
174
views
Send email with attachment
I am making a power app to send email with multiple attachments.
It sends email with 1 attachment control.
Office365Outlook.SendEmailV2(
"[email protected]",
"Subject",
"Body"...
1
vote
1
answer
165
views
I can't receive emails from the Godaddy website contact form
When I send an e-mail, it says "Message sent successfully", but there is no e-mail in our e-mail box. Godaddy customer representative said that he made the spf setting. What should I do?
...
0
votes
1
answer
229
views
Google authentication for automatic email send (in Airflow)
I'm an admin of my GCP project (I can create and manage anything) and I have to build a workflow in python to send emails periodically using Airflow. Our team has a User Admin account and we have ...
1
vote
2
answers
216
views
Need to add "Confidential/Internal use editable" label while sending an mail from outlook using smtp server in python
I have the below code for sending an email using the SMTP server:
import smtplib
import email.message as EM
try:
smtp_server = ''
smtp = smtplib.SMTP(smtp_server)
smtp.ehlo()
...
7
votes
7
answers
6k
views
Error: The "" scheme is not supported laravel
I have an error when try to send mail to mailhog with laravel, is the follow:
The "" scheme is not supported; supported schemes for mailer "smtp" are: "smtp", "smtps&...
0
votes
0
answers
44
views
Python - Is there a way to have my outlook signature added onto an automatic email draft
This is my code so far. The email is to use data from my df to write automatic emails. The email address is a field in the dataframe (defined elsewhere)
import webbrowser
one_row = df_changes.iloc[0]
...
0
votes
0
answers
43
views
How to set a header Subject using codeigniter 4
I'm using CodeIgniter 4 to send email, using a simple function, like this:
$email = \Config\Services::email();
$email->setTo('[email protected]');
$email->setSubject('Just a test');
$...
0
votes
0
answers
75
views
Why do PrestaShop e-mails arrive with wrongly encoded accented characters in the body?
I activated the SMTP email option in PrestaShop 8.2.0 and tried to send a test email through the dedicated section in the same page. I entered my email and I received the email.
I noticed that ...
0
votes
1
answer
271
views
How to correlate emails between Microsoft Graph API and Office 365 Management Activity API?
I'm developing an email analytics application that needs to track who sends emails from shared mailboxes. To do this, I'm using two Microsoft APIs:
Microsoft Graph API: to get the email data
Office ...