Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

I am using Airflow 3.x for a personal task and faced this error Failure caused by [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1010) source=task.stdout What I want to do is send an email ...
graybud's user avatar
0 votes
0 answers
51 views

I created a registered app in Azure and getting the access token issued to me via Postman. When I receive a token from Azure with "client credentials" as the grant type, the Python script ...
jdrpepper79's user avatar
1 vote
0 answers
63 views

When sending mail using Jakarta email throwing below exception Using these dependencies jakarta.activation-2.0.1.jar jakarta.mail-2.0.2 jakarta.mail.MessagingException: Could not convert socket to ...
prathi's user avatar
  • 1
1 vote
1 answer
128 views

I'm trying to send an email using PHPMailer, but I'm getting the following error: SMTP Error: Could not connect to SMTP host. Failed to connect to server SMTP server error: Failed to connect to server ...
Clint William Theron's user avatar
0 votes
1 answer
92 views

My website was developed in PHP using the CodeIgniter framework. On the development server, everything worked perfectly, but after migrating the site to Prohoster, the email sending feature stopped ...
Amell12's user avatar
0 votes
0 answers
25 views

Ik probeer via Azure Communication Services (ACS) e-mails te verzenden vanuit een Laravel-applicatie via SMTP, maar ik loop tegen het volgende probleem aan: Huidige situatie Resource group bevat: ...
Loukman's user avatar
0 votes
1 answer
139 views

I have a website that uses an email contact form. Recently been told it does not work. When I recreated the error in development I got the error 535, b'5.7.139 Authentication unsuccessful, basic ...
StevenG1's user avatar
1 vote
1 answer
87 views

I’m facing a consistent email delivery delay when using Django’s built-in send_mail() or EmailMessage functions with Gmail SMTP. 🔧Setup: Backend: Django (tested with both send_mail() and ...
Sanochain Ruj's user avatar
1 vote
0 answers
93 views

I have Google workspace, created for my mail application passwords and used the code as password in my .NET application. This worked for me in test application without Google workspace, from private ...
Majkel's user avatar
  • 63
0 votes
1 answer
92 views

Here's my code for simple proxy validation: import smtplib, socks socks.set_default_proxy(socks.PROXY_TYPE_SOCKS5, '*.*.*.*', <PORT>, ...
Chungus's user avatar
0 votes
0 answers
66 views

We are migrating from System.Net.Mail to MailKit. If we need to send emails every 30 seconds (or may be more frequently) using SMTPClient (connecting to Microsoft Exchange online), is it advisable to ...
Nilanka d's user avatar
1 vote
0 answers
119 views

I’m trying to implement a command-line tool in Rust to send email via Outlook's SMTP using OAuth2 Device Code Flow (in a non-GUI environment). I use the oauth2 and lettre crates to authenticate and ...
user3032481's user avatar
0 votes
0 answers
43 views

As our software has to support office365 I'm trying the mailkit example to connect to our office365 mailboxes. However, by using OAuth2, it still keeps ending up in a "SmtpClientAuthentication is ...
John Schellingerhout's user avatar
0 votes
1 answer
114 views

I’ve migrated a WordPress site to an Azure Container App running inside a Virtual Network (VNet). The site is accessible via a custom domain, and I’ve configured the container app ingress as follows: &...
reegan-anne's user avatar
0 votes
0 answers
122 views

Jakarta Mail provides two main ways to send email messages: Transport.send(Message msg) This static method uses the Session associated with the message, opens a connection to the SMTP server, sends ...
GeekChap's user avatar
0 votes
1 answer
279 views

I have Azure Communication Services setup to send SMTP email. I am sending the emails from a dotnet client and that appears to work, but I never get the email. In the ACS logs, I see the Delivery ...
Don Chambers's user avatar
  • 4,375
-2 votes
2 answers
116 views

I have an index page. I have a link in the index page that opens up a modal, in this modal I have a form. I'm trying to send the completed form as as an email but nothing is working. I've tried adding ...
James Bampton's user avatar
-1 votes
1 answer
362 views

I've a PHP page that sends email upon submission. It was working fine but 2 days ago, it threw this message: SMTP Error: Could not authenticate. Mailer Error: SMTP Error: Could not authenticate. My ...
Chiang's user avatar
  • 33
1 vote
0 answers
56 views

I have a python smtp sender, and for testing I send 245k symbols message with headers by using smtp msg = MIMEMultipart() msg['From'] = from_addr msg['To'] = to_addr msg['Subject'] = ...
user11225404's user avatar
3 votes
0 answers
47 views

I built a PHP application to establish a TCP socket connection to a mail server (SMTP server) on port 25, using a proxy. Here the main part: $context = [ "http" => [ "...
friday-json's user avatar
-1 votes
1 answer
118 views

I having issues with the email deliverability. Recently migrated my website and emails from a shred environment to AWS lightsail instance. And configured the DNS using the Route53 service of AWS. I ...
Rojin Antony's user avatar
0 votes
1 answer
51 views

I am trying to make a Python function to find SMTP host and port of an Email address import dns.resolver def get_smtp_host(email): try: # Extract the domain from the email address ...
Super Sanglap's user avatar
0 votes
0 answers
60 views

I have a simple script to send out email messages. The script works as it should but when the mail adresse doesnt exsits I dont get a failure message from my smtp server. If I send the same message ...
Paul Muaddib's user avatar
0 votes
1 answer
318 views

I am using mailKit 4.10.0 to make a SMTPClient. This client will call a custom SMTPServer using StartTls. The SMTPServer is using a self-signed certificate. Here is the code: using (var client = new ...
Don Chambers's user avatar
  • 4,375
0 votes
1 answer
58 views

I am attempting to programmatically update the "sent from" address for a particular WooCommerce email. Specifically the customer_new_account email. I am aware of the ...
brassmookie's user avatar

1
2 3 4 5
241