Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Filter by
Sorted by
Tagged with
1 vote
2 answers
124 views

Django email verification - unable to create new user using previously un-verified email address

I have email verification set up for when a new user account is created on my Django project, and until they verify their email the is_active flag on their account is set to False; once they verify ...
madjetmax's user avatar
1 vote
2 answers
190 views

Why are spaces allowed at the start and end of an email? [closed]

I am writing a regex to match email addresses. So, I am first reading the spec on what an email address looks like. According to addr-spec in RFC 5322, [email protected] is a valid email (notice the ...
Richie Bendall's user avatar
0 votes
1 answer
39 views

Email rule patterns to move all legitimate newsletters and mailing lists to a folder

I want to create a generic rule that moves all legitimate newsletters, mailing list emails, etc. to one single email folder so they do not clutter up my inbox. This is not about spam or filtering it, ...
Deeepdigger's user avatar
0 votes
1 answer
79 views

Custom validation to exclude trailing spaces in text responses in Qualtrics

I'm building a Qualtrics form that requires a respondent to enter their email address. That question is a single line text entry question type. The email address being typed correctly matters because ...
Mary Rachel's user avatar
1 vote
0 answers
78 views

Nodemailer error sending email through Hostinger service

Whenever I am trying to send mail to over a list of 50 emails, first email is getting sent perfectly to around 10 of them and then after a certain period of time its giving error. Your message wasn't ...
MAYANK KUMAR's user avatar
-1 votes
1 answer
61 views

how get many response checking email using smtp in python

I am writing a tool for osint in python 3 that has the purpose of finding people's emails. The program works on 3 levels based on the complexity of the emails to be found, 70% of the emails I have ...
Manuel Varagona's user avatar
0 votes
1 answer
329 views

How to use ngx-mask for validating mutliple emails with comma

I am working on adding multiple emailID validation for single input. Using ngx-mask 7.4.3. <input matInput formControlName="documentsRecipients" [dropSpecialCharacters]="false" ...
Nagnath Mungade's user avatar
0 votes
1 answer
338 views

Is it safe to convert emails with other characters than a-Z to lower case?

Any modern email service provider treats emails as case insensitive meaning that in my application I should allows users to log in both using [email protected] and [email protected]. In terms of the ...
Oscar's user avatar
  • 620
2 votes
1 answer
148 views

Angular - Email pattern validation

<label for="userEmail">User Email:</label><br /> <input type="email" class="userMobile" id="userEmail" name="userEmail" [(...
Vinutha K Shetty's user avatar
1 vote
1 answer
150 views

Flutter Serverpod Email Validation

Can anyone explain how to send the validation code from serverpod to flutter app via message or email .Instead of printing the validation code in the terminal Using Mailgun , Sendgrid or any smtp ...
santhosh kumar's user avatar
0 votes
0 answers
45 views

Email Verifcation is working properly on my localhost but not when I hosted it

My email verification is working properly on my localhost but when I hosted it, it is not working. When I clicked the link "Verify Email" on the email the user received, it always shows &...
Roland Ruiz's user avatar
0 votes
1 answer
154 views

Text in HTML email not rendering for OL Office 365 for Windows?

When I tested this 2 column layout in Litmus, all looked fine except for Outlook for Windows. This one is explicitly OL Office 365 (Windows 10). I tried to add a height to the paragraph and a ...
Schneider G's user avatar
0 votes
0 answers
26 views

Jquery email validation on progressive form

I'm working with a progressive form and seeking assistance in integrating email validation upon clicking the next button. Presently, the form proceeds to the subsequent section regardless of whether ...
user6725932's user avatar
0 votes
1 answer
72 views

Website account creation: How to add a pop-up saying account creation was successful? ReactJS

Currently on our fan website we have established a very simple account creation function: once a user completes their account creation, they have no way of knowing if the creation was successfull or ...
enimox's user avatar
  • 7
1 vote
2 answers
520 views

Trouble with SPF-records sending to gmail-accounts

I'm no SPF expert, meybe some of you are Not so long ago, it began to be necesssary to authenticate in order to be able to send emails to the Google gmail-system. At my company we run our own email-...
Hans Otto Lunde's user avatar
0 votes
2 answers
2k views

What's the best way of creating an email verification in Django?

So, My idea is: Create a user Verification Code is send in email Confirm email and active user I tried this views, creating the user but not activate it. Then comparing the user code with the ...
Adryan Taborda's user avatar
1 vote
1 answer
95 views

Is it save to rewrite unsupported timezone UT to UTC?

I try to parse Date-Headers in eMails. Sometimes eMails have this Date-Header: Mon, 18 Jul 2011 05:05:53 UT Looks like the format described in the javadoc So I wrote a test for this: public void ...
Grim's user avatar
  • 2,133
0 votes
0 answers
43 views

How to send email validations through Django?

so, I'm trying to make a function in my django project that sends a confirmation key through email for the user so I tried to do this: views.py def createuser(request): form = MyUserCreationForm() ...
Adryan Taborda's user avatar
0 votes
0 answers
395 views

Email delivery (or Mailbox) testing without sending emails in PHP?

I have a list of emails and want to check how many of them are able to receive emails. I have a PHP code that validates email using filter_var($email, FILTER_VALIDATE_EMAIL) and $domain = explode('@',...
Ameer Hamza's user avatar
0 votes
1 answer
162 views

Error: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client. (nodemailer-emailVerification)

app.post("/signup", async (req, res) => { // console.log(req.body) const { username, email, password, cnfrmPass } = req.body; // console.log(cnfrmPass) const passwordRegex ...
Indul's user avatar
  • 1
0 votes
0 answers
123 views

Confirming whether an email exists or not

There are similar questions and I have already basically checked all of them. My question is when I try to clarify whether an e-mail really exists or not(such as [email protected], I cannot clarify the ...
persona's user avatar
  • 108
0 votes
0 answers
81 views

e-mail SMTP verification

I'm seeking guidance on email SMTP verification. I attempted to use PHPMailer to identify invalid recipients, but it wasn't successful. I also used sockets, but I get the same response even when the ...
Martin Fulgence RANDRIAMBOLOLO's user avatar
0 votes
1 answer
115 views

In Django AuthenticationForm, how to check only email and password is_valid

I tried to do this to remove username validation def clean_username(self): return "valid_username" But the is_valid() method is showing false. Even when i give the correct username and ...
UnderGamer's user avatar
1 vote
1 answer
551 views

How to validate email in all the possible ways in Flutter TextFormField

I want to validate the email in all possible ways. I've checked many posts on Stackoverflow, and most of the answers suggest using Regex, but it does not validate domain names. For example,if I enter ...
user8's user avatar
  • 339
-2 votes
1 answer
50 views

VerifyEmailError not defined after installing verify_email library (Python 3.11.5)

I am using Python 3.11.5 and installed the verify_email library to validate email addresses. However, when I attempt to catch the VerifyEmailError exception using a try-except block, I receive the ...
anon's user avatar
  • 23
-1 votes
1 answer
136 views

Allow email address with a dot OR hyphen in the domain (HTML)

I created a form using html. I have an email address field in which i'm allowing domains containing a dot. However i can still have domains with a hyphen, a kind of "[email protected]" It's ...
ayakuza91's user avatar
0 votes
1 answer
426 views

Contact Form 7: validate email field with more than one address

I would like to be able to send emails from a CF7 form to more than one recipient using an input field in the form to obtain the email addresses. The problem is that the email field of CF7 only ...
Christer Fernstrom's user avatar
0 votes
0 answers
19 views

Regex pattern for validating email for special symbol of ASCII character 146 in domain name as well as in username [duplicate]

I have used this pattern and after several modification this pattern is not validating and I'm validating by regex. <input type="email" pattern="/^([a-zA-Z0-9_\-\’\.'’]+)@((\[[0-9]{...
Abhay Agnihotri's user avatar
-1 votes
1 answer
483 views

Google form regex email validation excluding some domain

I'd like to restrict to non-private emails a field. I'm using the regex ^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$ and I want to blacklist gmail and icloud domains. Following the RE2 Syntax I ...
EnricoBara's user avatar
0 votes
1 answer
48 views

Hello! In my code, EmailField and PasswordField dont work

Even password and confirm password don' match, it doesn't give me feedback about that. Also even I write email like that 'vmdfjk@hot' my code except this email I dont know why and Im really confused. ...
katransız's user avatar
-2 votes
1 answer
520 views

how to write a regex pattern for email and password?

i have problem with writing regex pattern for following statements. i think i have problem with pattern of email. for email: domain should be end with google.com or (nothing or any characters).go at ...
Asal Halimi's user avatar
1 vote
1 answer
102 views

Trying to send Validation Email in django, getting error

Im trying to send validation email when creating a user in django. It used to work like that but then I did some refactoring on the URLs and used urlpattern = UrlPattern() and urlpattern.register(...
Geo's user avatar
  • 306
0 votes
0 answers
77 views

Function validate email SQL informix

I need to do a function in an older version of informix that I need to validate a mail: so I need a function that check the email pattern [a-zA-z0-9]@[a-zA-Z0-9].[a-zA-Z0-9] Also in the last one that ...
Martí Castell's user avatar
0 votes
0 answers
296 views

Is there any better documentation for bulk-email-verifier?

So, I'm trying out a new project right now (the project is to verify emails). And I'm using the bulk-email-verifier library on google colab. The problem is that the code is wonky and I can't find any ...
daza's user avatar
  • 27
0 votes
1 answer
82 views

Email verification using pattern

I have used a the pattern inputProps={{ pattern: '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$' }} but its throwing a console warning Pattern attribute value [a-zA-...
Sai Krishna's user avatar
0 votes
0 answers
110 views

Check if login is correct before sending mail - Yahoo & Powershell

Currently, I am trying to send email through my Yahoo account with Powershell. I would like to know if it is possible to check if the login is valid through the given credentials. I have looked for ...
Bubinsky's user avatar
-1 votes
1 answer
837 views

does the email-validator python library send out actual emails to check deliverability?

Has anyone used the python library [https://pypi.org/project/email-validator/] it has a check_deliverability=True option. Does this option send out actual emails to check deliverability? I only want ...
Sty's user avatar
  • 39
0 votes
0 answers
90 views

Using InStr() in VBA to flag emails

I'm trying to make a macro that will go through a list of emails and flag potential problems by changing their color. I was trying to do it by using the Like function, but I forgot that it's case ...
MRDoubleyou's user avatar
0 votes
1 answer
1k views

Apache commons email validator: allow plus character in e-mail

using org.apache.commons.validator.routines.EmailValidator (1.7) for e-mail validation in Java. In GMAIL a user is allowed to use [email protected] and it will go to [email protected]. However, ...
Marcel's user avatar
  • 105
1 vote
1 answer
77 views

Django Email Domain Validation with cleaned_email function works very slow after submitting

Hi i am trying to write email domain validation for sign up form in django syntax with following function code. I am using the function inside class meta: VALID_DOMAINS is a list = ['gmail.com', '...
Furkan's user avatar
  • 13
0 votes
0 answers
47 views

Mobile automation script fails when the email verification site is not working

Steps are: I click on my app. Enter the email address and click on submit button. Then I receive a message as check your inbox. In the email, I receive a email verification link. Once I click on that ...
Neha Relan's user avatar
0 votes
1 answer
54 views

Regex pattern issue with single character

I have a regex for emails validation and it goes like this: [A-Z0-9a-z._%+-]+@([A-Za-z0-9]+[.-]?)+[A-Za-z0-9]+\.[A-Za-z]{2,} But some users with a single letter after the @ character email can not be ...
Yupi's user avatar
  • 4,468
1 vote
1 answer
300 views

Possibility of Email template validation using Karate API Framework

I am trying to validate the email template content like the Subject, Body, and Sender using Karate API Framework. To do this, I am using a Disposable email server (https://www.mail7.io/). Finding it ...
user1047221's user avatar
0 votes
1 answer
764 views

How to validate a large number of emails with SendGrid and Python?

I have a list of 50k+ email every month addresses that I need to validate using SendGrid'API. I am looking for a way to validate all of the emails at once, rather than sending individual requests for ...
ankit kalal's user avatar
1 vote
0 answers
145 views

Address in mailbox given [s170749_0] does not comply with RFC 2822, 3.6.2

I have a problem with my Laravel 8 application and mailings I have the following shipping SMTP account: Username: 122797_5 Password: ******* Server: fast.smtpok.com Port: 25, 80, 1025-5000 It does ...
Jerao91's user avatar
  • 11
0 votes
0 answers
215 views

SendGrid does not send emails in my ASP.NET Core MVC web application

Whenever I click the register button, the page appears asking to check the email for confirmation but the email never arrives. I already configured the key, I already made a console application and it ...
NÍCOLAS DINIZ DE CASTILHO's user avatar
0 votes
1 answer
642 views

React reCaptcha alert on screen instead of error messages

The issue I'm having in my form is that when the reCaptcha verification is successful, the alert message is being shown instead of the error messages for any empty or complete input fields. The ...
Jeremiah's user avatar
0 votes
1 answer
722 views

Sanitizing email addresses: filter_var() / FILTER_SANITIZE_EMAIL vs htmlentities()

If a user enters an email address (and it validates), I think I am correct that it, in common with all user entered data, should be sanitized before outputting it in HTML in case the email address ...
user3425506's user avatar
  • 1,467
0 votes
3 answers
126 views

Regular Expression for email formatting without hypen at first and last

I have created the regular expression which will take the email address as in following format: [email protected] Regular Expression /^(?!-)[\w-\.]+@([\w-]+\.)+[\w-]{2,4}/ I am trying to do the email ...
Shantanu Mahajan's user avatar
0 votes
1 answer
1k views

Validate email that was sent using apex_mail.send and apex_mail_log

I'm using Oracle Apex version 22.2. I have a pl/sql process where I'm sending an email, and another process runs based on the status of that email being sent. I can select the mail_id from ...
LogicallyFunky's user avatar

1
2 3 4 5
25