Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
0 replies
39 views

I am planning to build a project using an Express JS REST API with React native. I am wondering how email verification is usually handled with this kind of stack. A flow is: User registers with ...
1million_ naira's user avatar
0 votes
0 answers
58 views

hi I am working on email verification function in laravel project. it now got the invalid signature error message when users click the email verification url in production, but worked in local ...
RA.IBOY's user avatar
  • 111
1 vote
1 answer
134 views

I am currently working on creating a code which will be used to generate emails of the employees that are working in the selected organization and after that the code will verify if the emails are ...
Akash Saxena's user avatar
0 votes
0 answers
58 views

Im new to laravel and Ia m using wave v3 from devdojo for my saas app which is actualy done except for one thing and that is email verification of regustered user. Documentations says that I meed to ...
canarin's user avatar
0 votes
0 answers
18 views

I tried everything to fix this issue, it is so frustrating!! After the registration (with React) I receive the verification email including the link. After I clicking the link the issue with the "...
ChrisCross83's user avatar
0 votes
0 answers
46 views

I would like to ask if there is another option in customizing email template in sending verification code on user sign up in aws cognito? except using lambda trigger or customizing it via aws cognito ...
raks's user avatar
  • 31
0 votes
1 answer
563 views

Im trying to manually send email verification mail using this API /{realm}/users/{id}/execute-actions-email But it does not work, here you can check their documentation On second screenshot you can ...
AlmaG3st's user avatar
  • 391
0 votes
0 answers
266 views

I've implemented a passwordless login system in AWS Cognito and aiming to streamline the user experience based on a flow I've seen in real-world apps. In my case, I'm using AWS Cognito with a ...
Norbert's user avatar
  • 4,291
0 votes
0 answers
324 views

I want to send a verification code via email but smtp does not work. This is my method: public static void SendVerificationEmail(string email, string code) { var fromAddress = new MailAddress(&...
İrem Kürekçi's user avatar
2 votes
1 answer
328 views

I want to use a custom template for verification emails being sent by Laravel 11. It generates a verification url, but when I click it, it shows 404 on the browser. Below is my user model where I ...
Ish's user avatar
  • 27
0 votes
1 answer
165 views

I'm validating the email with smtp server connection using rcpt command. It is working fine with google but when I try with outlook and yahoo email it shows "SMTP connection error: Connection ...
M.kashif raja's user avatar
0 votes
0 answers
51 views

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
0 answers
52 views

I have created a REST Api with Spring boot and to send emails, I have implemented the Gmail API. When I'm starting the api on my server for the first time, this comes of course : Please open the ...
LaLeX1491's user avatar
-1 votes
1 answer
88 views

I want like after the initial registration such is inputting username, email, password, other personal infos, the user is not yet registered as he will recieve a code from the email, how to do that in ...
Cypher's user avatar
  • 11
-1 votes
2 answers
63 views

So, I'm creating a user confirmation system where a code is created, stored in the session and send through email I made some prints inside the view that is used to confirm the code and active the ...
Adryan Taborda's user avatar
0 votes
1 answer
346 views

I have a Laravel application that acts as a backend API for the VueJS frontend. I have overwritten the handle method of the EnsureEmailIsVerified middle in order to have the frontend handle ...
njk18's user avatar
  • 163
0 votes
1 answer
918 views

I've been dealing with an issue for a long time and haven't found a solution. I'm using Laravel 9 in production, and when the user registers, the verification email is automatically sent, but upon ...
Jovany González's user avatar
0 votes
1 answer
40 views

I'm trying to send a confirmation email every time a user signs up for my service. I followed tutorials but while the user is getting signed up, the email is not being sent. This is my views.py def ...
Sneha_R's user avatar
  • 13
1 vote
0 answers
150 views

Title: Error: Failed to start TLS when sending OTP email using Mailtrap in Go Description: I'm working on implementing OTP email verification for user sign-in in my Go application using Mailtrap as ...
Abdullah odukoya's user avatar
0 votes
1 answer
263 views

I'm stuck with this error in laravel, What I want is to verify the email address once they receive the email notification. But everytime I click the link on the email notification it has an error: &...
babe_engineer's user avatar
0 votes
1 answer
271 views

I'm encountering a puzzling issue while implementing user registration with Firebase Authentication in my Next.js application. Specifically, when attempting to register a new user with an unverified ...
Farhan's user avatar
  • 35
1 vote
1 answer
70 views

I'm facing an issue with the Firebase Cloud Function responsible for sending email verification to users. The function appears to execute successfully, and the logs indicate that the verification ...
CZY.'s user avatar
  • 21
1 vote
0 answers
60 views

I am trying to implement email verification using Firebase. And It's not sending a verification email to a Gmail address like [email protected] but working fine with other email addresses like temp-...
Mussadaq Ahmad Jamil's user avatar
2 votes
1 answer
146 views

I have created a flutter app which uses sql database. I have created a signup page, I want that when the user creates a new account, an email should be sent to the entered email id for verification ...
Yashi Goyal's user avatar
2 votes
1 answer
329 views

Note: This question was marked as duplicate and there was three questions linked, but they are not similar to my question. My question is how can I take a certain action when the email of the user ...
Shaidozzaman Araf's user avatar
0 votes
0 answers
81 views

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
0 answers
177 views

I'm using Laravel's auth package, and I am trying to configure Controllers/Auth/VerificationController.php to try to redirect the user to the homepage. Basically, I will send an email verification ...
Sequoia's user avatar
  • 13
-1 votes
1 answer
68 views

i was working on registration screen and after the registration i wanted to show a screen that says verify email with a link to send a verification but it's not working here is the code - import '...
Abemelek Ermias's user avatar
0 votes
1 answer
59 views

Good afternoon. Please tell me, how can you substitute your custom letters while using composer require laravel/ui php artisan ui bootstrap --auth in Laravel 9. Is it possible to make sure that the ...
dev_2108's user avatar
-1 votes
2 answers
637 views

I have this Angular app (Angular 13) Which I use to verify emails using firebase. It worked fine in localhost (also in Google Cloud Platform) but when I added meta directive for it stops showing any ...
Yasitha Kahangama's user avatar
0 votes
0 answers
92 views

Hello Stack Overflow community, I'm encountering an issue in my PHP-based LMS system where email verification codes are not being sent successfully during user registration. Here are the key details: ...
M.A.Asardeen's user avatar
2 votes
1 answer
569 views

I made the security process in my symfony app. That allready works, but if the email-verify link is expired, how to make a new link "request a new link." ? Like is asked on this picture : ...
thicre's user avatar
  • 21
0 votes
1 answer
444 views

I am writing a simple android app where the user can create an account with email and password, sign in and then I send email verification. After the user verify their email I let them use the app. I ...
newbie coder's user avatar
-1 votes
1 answer
116 views

I want visitors of my website to be able to provide their email address in a form to get future company updates. Once they submit the form an email would be sent to their address with a link to click ...
user avatar
0 votes
2 answers
656 views

I try to add an multi-factor auth to an existing account, which is signed-in with google. I get the error "verify email first": [SmsRetrieverHelper] SMS verification code request failed: ...
Bernhard's user avatar
  • 289
1 vote
0 answers
126 views

I'm working on Firebase authentication within my Next.js app. After a user signs up using email and password, I require account verification during their initial login. However, after account ...
Junaid E. Rajput's user avatar
0 votes
0 answers
302 views

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
0 answers
130 views

I wrote this: require 'PHPMailer/Exception.php'; require 'PHPMailer/PHPMailer.php'; require 'PHPMailer/SMTP.php'; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; ...
Codeleek's user avatar
-2 votes
1 answer
156 views

I am trying to send a verification SMS or an e-mail to the user. I find that using Python libraries like 'smtplib' or third-party libraries like 'sendgrid' can send a verification e-mail or an SMS to ...
Code_Sphinx_TSK's user avatar
1 vote
0 answers
195 views

I am using passport magic email verification feature (refering from https://github.com/mxstbr/passport-magic-login) this is my code const magicLogin = new MagicLoginStrategy({ secret: ...
Ritesh's user avatar
  • 37
0 votes
0 answers
182 views

Iam using firebase for the authentication part, I noticed that the registration to the website is different according to the provider (Yahoo or Gmail) and also according to the network. Verification ...
itdev's user avatar
  • 53
0 votes
1 answer
122 views

I am trying to build an email server for my website. I have a contact form and when you pass it, the server sends a verification link to email address specified in the form. Also, a response after ...
he1dj's user avatar
  • 73
-1 votes
1 answer
56 views

I am trying to implement the email Verification in my web application using MERN.I am getting the Verification Url on email But when I clicking on the verification URL I am facing this error. I ...
Nitesh Tiwari's user avatar
0 votes
0 answers
486 views

A site I work on disallows using emails from K12 schools (elementary, middle, and high schools) because policy disallows users under age 18. It is a lot of manual moderator work to verify unusual ...
sgfit's user avatar
  • 216
2 votes
0 answers
684 views

So, I'm trying to make a blog website. I'm with the authentication, and I'm struggling a bit with the security part. I'm trying to make email verification security a thing in my auth security. I've ...
Tanmay's user avatar
  • 46
1 vote
0 answers
47 views

I'm currently facing an issue where the verification email is not being sent to users after they submit the registration form in my Laravel application. Here's what I have already checked and ...
Enthusiast Programmer's user avatar
0 votes
1 answer
730 views

I am using firebase auth for user login in my android app. My problem is sending a link for email verification and password reset. The links in the mails sent to the government agency e-mail addresses ...
Bukrek35TR's user avatar
1 vote
1 answer
1k views

I'm currently implementing email verification for a Node-based application using AWS Cognito. We use an external email sender service to send our verification emails, and I've already configured this ...
b.c.1009's user avatar
0 votes
0 answers
51 views

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
2 votes
1 answer
819 views

Someone has a guide mb or tutorial about how can i make instant email verification by code like i want to register user and after he typed his email username and password in registerForm send him code ...
Zesshi's user avatar
  • 522

1
2 3 4 5
11