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
0 votes
0 answers
56 views

laravel: 403 invalid signature on email verification in production but succeeded in local environment

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
128 views

Work Email generator and verification of the existing employees

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

Email verification in wave v3 Saas template

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
17 views

Issue - TemplateResponseMixin requires either a definition of 'template_name' or an implementation of 'get_template_names()' [duplicate]

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
40 views

Options in customizing email verification message template in AWS Cognito

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

Laravel Email Verification on Multiple Users

I have two users user, and member. When i logged in the user, it goes to verify-email, which is correct. However, when i try to log in as member, it goes to /verify-email also which it should be ...
perchance youcant's user avatar
0 votes
1 answer
511 views

Keycloak email verification mail sending manually?

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
252 views

How to issue an access token after account confirmation in AWS Cognito in a passwordless flow (combined sign-up/sign-in page)?

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
311 views

System.IO.IOException: Unable to read data from the transport connection: Connection reset by peer

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
309 views

Laravel email verification URL redirect to 404

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
161 views

Why the SMTP Connection unexpectedly closes while trying outlook and yahoo server?

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

How to verify Gmail Api token on my Server?

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
81 views

How to implement email verification for registration in asp.net mvc, something like gmail codes

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
62 views

View returning user as None

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
333 views

Implementing Email verification in Laravel API application

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
903 views

Laravel Email verification link using localhost in a production

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
34 views

Why is the email still not being sent even though all steps have been fulfilles?

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
139 views

Failed to start TLS: 421 Local Error, closing transmission channel

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
258 views

Call to undefined method markEmailAsVerified()

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
261 views

Issue with Firebase with next js Authentication Flow: Unverified Email Triggers "auth/email-already-in-use" Error

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
67 views

Verification emails sent from Firebase Cloud Function not received by the user

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
56 views

Firebase email verification not working with Gmail accounts using Flutter?

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
131 views

how to implement email verification after new account creation in flutter app using sql database?

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
322 views

Listen to user.emailVerified state in firebase with React Native(Expo) [duplicate]

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

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

How to verify email from pc to mobile

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
61 views

flutter view not showing up

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

Custom emails during password confirmation while using composer require laravel/ui

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
628 views

Content-Security-Policy does not allow styles to load and prevent functions (Angular 13)

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
90 views

Issue with sending verification codes via email in LMS system

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
562 views

Symfony email-verification - expired link

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
437 views

Firebase email verification url does not work on my android expo app

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
114 views

Implementing an email database from a website form

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
646 views

verify email-adress from google sign-up - flutter mobile app

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
122 views

Firebase Incorrect Password Error After Account Verification in Next.js App

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

PHPMailer Couldn't connect

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

How to send a verification SMS or a e-mail for user without using smtplib? [closed]

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
194 views

TypeError: user.get is not a function

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
174 views

Firebase: verification email sent to Yahoo but not to Gmail [duplicate]

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
119 views

TypeError: EmailVerificationTokenGenerator.make_token() missing 1 required positional argument: 'contact_form'

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
55 views

page not found on clicking Verification url in react Js

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
480 views

How to determine if a email address belongs to a K12 school?

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
682 views

Email verification after the user edits the email - Django

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
45 views

Laravel: Issue with Sending Verification Email to User Upon Registration

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
718 views

Email verification with code without using verification link with firebase auth

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

Use Cognito verification code to verify a user's email without user access token

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

How to create django registration with email conformation code

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
  • 524

1
2 3 4 5
11