Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
41 views

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 ...
ron's user avatar
  • 9,458
0 votes
0 answers
33 views

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 ...
Sharvari Mittal's user avatar
0 votes
0 answers
50 views

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 ...
chryzz thetics's user avatar
0 votes
1 answer
77 views

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 ...
WG-'s user avatar
  • 1,088
0 votes
0 answers
164 views

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 ...
Frederik Gysel's user avatar
0 votes
1 answer
68 views

I have code to send email from python azure email client. client = EmailClient.from_connection_string( "https://mydomain.communication.azure.com/;accesskey=XXXXXXXXXX" ) ... ... ...
NPatel's user avatar
  • 21.4k
1 vote
1 answer
117 views

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....
Charles Fleischmann's user avatar
0 votes
0 answers
48 views

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 ...
chishiki's user avatar
  • 712
1 vote
1 answer
88 views

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 ...
Abhijeet Kumar's user avatar
-1 votes
1 answer
34 views

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 ...
Marryam Raja's user avatar
0 votes
1 answer
379 views

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 ...
Christopher's user avatar
0 votes
1 answer
31 views

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 ...
Esteban Cabrera Gómez's user avatar
1 vote
1 answer
71 views

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 ...
Alex Regan's user avatar
0 votes
0 answers
36 views

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 ...
TehGoose's user avatar
0 votes
0 answers
51 views

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 ...
ZACK F.'s user avatar
  • 35
0 votes
2 answers
178 views

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, ...
Javaria Gulzar's user avatar
0 votes
1 answer
174 views

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"...
Alan Tse's user avatar
1 vote
1 answer
165 views

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? ...
Büşra's user avatar
  • 11
0 votes
1 answer
229 views

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 ...
Augusto Giani's user avatar
1 vote
2 answers
216 views

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() ...
umang waghela's user avatar
7 votes
7 answers
6k views

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&...
Eliaquim da Luz's user avatar
0 votes
0 answers
44 views

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] ...
Guy Anderson's user avatar
0 votes
0 answers
43 views

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'); $...
Nan Medeiros's user avatar
0 votes
0 answers
75 views

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 ...
gassiopea's user avatar
0 votes
1 answer
271 views

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 ...
Héctor H. Hache's user avatar

1
3 4
5
6 7
1185