Questions tagged [email-confirmation]
123 questions
0
votes
1 answer
Email verification code in app url (deployed on azure) not finding endpoint
I have .net core identity email verification endpoint setup like this:
/api/[controller]/{userId}/{emailVerificationCode}
and I encoded it in registration endpoint with Uri. EscapeDataString (decoding with Uri. UnescapeDataString but that's…

Bida
- 439
- 1
- 4
- 13
0
votes
0 answers
How to detect in a React app if a user within Firebase has confirmed their account via email link?
After a user signs up, they are sent a confirmation link to their email address through Firebase. If the account is not verified, the user isn't able to interact with anything on the app. Once the account is verified, the React state changes,…

Ralph David Abernathy
- 5,230
- 11
- 51
- 78
0
votes
1 answer
How to handle conflict in overriding Magento\Sales\Model\Order\Email\Sender\OrderSender in Magento 2
I have had an issue for some time in overriding the OrderSender Model in Magento 2 as a result of creating a custom payment module.
First of all i was not able to prevent email from being sent out once an order is made (wether successful or not…

afro-Nija
- 185
- 1
- 4
- 17
0
votes
1 answer
Ruby on Rails - Devise - Send sign up confirmation email on action other than usual sign up
Using Devise, how can I send confirmation email (identical to signup email) on first password update (or on an action other than usual sign up)?

TamerB
- 1,401
- 1
- 12
- 27
0
votes
1 answer
Change the From field in an email with the mail command under linux without the -a option
Problem: when I use the mail command under linux (Ubuntu Server 16.04) as root to send an email (several scripts on my server do so), the From: field in the mail header looks like From: root@mydomain.org. I want it to look like From:…

Ilka
- 50
- 8
0
votes
0 answers
Woo Commerce Custom Email Subject For Product Category
I am trying to have a custom email subject in the confirmation email sent when a customer buys a product from a specific category. Thanks to @LoicTheAztec I was able to get some code inserted in the functions.php and it seemed to work fine when…

Sean Smith
- 11
- 1
- 6
0
votes
1 answer
EmailConfirmation with FosUserBundle Does not work
hello i have been trying to send an email Confirmation since 2 days without success with FOSUSERBUNDLE on symfony 3.4. I know this is a process FosUser makes automatically But i can't make it's work.
this is in my framework.yaml
fos_user:
db_driver:…

Diego Bastidas
- 63
- 1
- 9
0
votes
1 answer
Account Confirmation error on ASP.NET Core web app running on Apache server using reverse proxy
I have a sample MVC web application built using ASP.NET Core. I have also enabled account confirmation so when users register, they receive an email confirmation. My web app runs fine and account confirmation works fine when I run it locally using…

kimbaudi
- 13,655
- 9
- 62
- 74
0
votes
1 answer
How do I make a link to my SendEmailConfirmationTokenAsync in my view?
After a customer registers as a user in my application they are sent to the login page. When they log in I have a message that tells them to confirm their email. Currently when I click it it goes to a 404. Here is my send email confirmation token…

Skullomania
- 2,225
- 2
- 29
- 65
0
votes
0 answers
How to send reset password instead of confirmation email in Devise?
I am trying to make it so that if a one type of User is created - then instead of sending the confirmations email, it sends the reset password link (I have already achieved so that the reset password link serves as both confirmation and reset…

Aurimas
- 2,577
- 5
- 26
- 37
0
votes
0 answers
ruby on rails: received email confirmation link doesnt work with heroku
I am a total newbie on programming and I tried to program email-confirmation with ruby on rails in development mode. I followed a tutorial for registration with email confirmation and they used sendgrid, an addon for heroku. I made an account there…

Peter
- 719
- 1
- 8
- 19
0
votes
1 answer
.NET Identity Email Confirmed Bool
I want to simply get in my code if the user has his email confirmed or not. Without an async method. Can someone help me please?

Give IT
- 200
- 1
- 3
- 19
0
votes
1 answer
How can i validate email confirmation token?
In my asp.net mvc application, when a user registers, I send a email to their account with a link for validation before they can use the app. See code snippet below.
var emailActionLink = Url.Action("ValidateAccount", "Register",
…

floormind
- 1,868
- 5
- 31
- 85
0
votes
0 answers
email confirmation after registration in asp.net
somehow my code is not fully functioning.
These codes are fine:
protected void Page_Load(object sender, EventArgs e)
{
}
SqlConnection con = new SqlConnection("Data Source = 'PAULO'; Initial Catalog=ShoppingCartDB;Integrated Security…

Paolo Duhaylungsod
- 487
- 1
- 7
- 25
0
votes
2 answers
Idenitity UserManager ConfirmEmailAsync error
Visual Studio 2013 / MVC 5 / Identity 2
Still a bit new to using built in email confirmation...
testing under localhost - no errors
in production - I am getting an error when user tries to confirm email
var result = await…

Robert Achmann
- 1,986
- 3
- 40
- 66