Questions tagged [mail-sender]
100 questions
1
vote
5 answers
c# MailSender and sleep
I am writing a program that sends email through class SmtpClient. I use this code:
try
{
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("mailSMTP.it");
mail.From =…

Stefano Castelli
- 11
- 2
0
votes
1 answer
Python Flask - Email Sender Does not Work
I am trying to sending auto mail from my real mail adres to other mail adres. I use my real password for MAIL_PASSWORD value. What am I doing wrong with coding. I dont get any errors but I dont get any mails neihter... I need help to figure it…
0
votes
0 answers
Async Java Mail Sender not sends all mails
I have a Spring MVC web Application with have to send mails for a lot of user actions which, at the first time, was made by a synchronous method.
If i make many actions (4-5) on sequence, the mail sender is not sending all mails but only some.
I've…

frsv9
- 11
- 3
0
votes
0 answers
how to send email in java spring boot
I'm working on an app that needs to send an authentication token to a user whenever the registration is successful through the user's email address. I used a java mail sender for it but I'm getting this error from the stack trace. I have disabled…

Ukeme Elijah
- 157
- 3
- 13
0
votes
1 answer
Email sending service (non user inactive) - OAuth2 microsoft c# send mailkit
I am trying to replace a windows service which sends emails for users via smtp with Microsoft accounts (within the business)
Microsoft are turning off the old auth method at the end of the month
I am using c# and mail kit and can get a token,…

Haggo
- 19
- 6
0
votes
0 answers
JavaMailSender can't send email when setting pc time to the past
I want to testing send mail using JavaMailSender,the code work fine but when I setting my pc time to the past it throw this exception.
Could not convert socket to TLS
Here is my code
MimeMessageHelper message = new…

EasyU
- 11
- 1
0
votes
0 answers
Concat dynamic value and static text on the FromEmail sender profile
Let's say I would like to setup the FromEmailAddress of the sender profile with both dynamic value and static text. The FromEmailAddress would contain two parts : the account name which is dynamic and a static text '@email-3Dagency.com'. Here is an…
0
votes
0 answers
Sender Name in Sendgrid not working for Single Sender Verification
I am trying to use the custom sender name in the email that is being displayed.
I just want to change the display name of the sender's name.
For instance, if I have: abc@def.com
The name displayed is: abc.
I want a custom name like: Sender_abc
This…

Garima Arora
- 11
- 2
0
votes
2 answers
I want my python script to send emails 1 by 1 from email list (like 1st done then repeat task and go to second until finish)
I want my task to be 1 by 1 not bulk so I'm sending from list of emails. I want it sending to first one then repeats task and sends to second one. The code already works properly but it sends as bulk all emails together so when recipient gets the…

yxxhixx
- 29
- 6
0
votes
0 answers
PHPMailer return success but email never got to my inbox
I'm using PHPMailer 5.2.28 and apparently it send the email (I'm getting the sucess page), but when I check my mail I'm not receiving it.
I've uploaded PHPMailer files on host and even then got nothing (i'm using kinghost).
My send.php code is
…

Anna Halasz
- 3
- 3
0
votes
0 answers
Sender Mail through javascript
I try to send data entered in a form via javascript.
HTML
0
votes
0 answers
I am getting this error: Could not connect to SMTP host: smtp.gmail.com, port: 25;
The problem is that am getting the following error in my postman while testing email sending:
the problem is that i'm not using the port 25 here is my code in the application.properties:
#Below Properties are needed for maintaining the…

ELLA
- 11
- 4
0
votes
1 answer
Mail Sender Exception (Using mailtrap.io)
I'm trying to implement Mail Sending functionality (For now I'm using some fake smtp) but I keep getting this error:
2020-09-19 00:20:38.209 DEBUG 880 --- [nio-8080-exec-5] o.s.web.servlet.DispatcherServlet : Failed to complete request:…

JustQuest
- 249
- 4
- 15
0
votes
0 answers
Connection refused.Failed messages: javax.mail.MessagingException: Could not connect
I have implemented Javamailsender for sending emails. But I am always getting this exception
org.springframework.mail.MailSendException: Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP…

Watermelon
- 84
- 8
0
votes
1 answer
Gerrit how to change notification sending email? (virtual host)
Can I change the email address that gerrit uses to send notifications? And how?
I have consulted the documentation but I can only find how to change the name of the sender, not the sending adress...
My configuration and why this is a problem:
My…

DMX David Cardinal
- 599
- 2
- 7
- 19