Questions tagged [email-confirmation]
123 questions
0
votes
1 answer
Struggling to login to my Facebook account
Am trying to log into my account,but firstly I need to get a confirmation code sent to my number by text to do so.i haven't received any code even though it is my correct number that it should be texted to.what should I do?
0
votes
0 answers
How to solve SMTNotSupported extension by the server Error?
Actually i am creating a registration form using django and when user will submit it he will get successful registration mail but it will give me error SMTPNotSupported extension server.
my settings.py file
EMAIL_HOST = 'smpt.gmail.com'
EMAIL_PORT…

Furkan Shaikh
- 1
- 2
0
votes
0 answers
Devise confirmation e-mails appear to be sent but are not received
I am able to send/receive sample e-mails via Sendgrid on sign up via sync & async, I just add the method calls in to the sign up/create on the registration controller.
I can't get the confirmation e-mail to send though, well it looks like it sends,…

user3738936
- 936
- 8
- 22
0
votes
0 answers
Registration with email confirmation ASP .NET Core
I'm learning ASP .NET and I'd want to make a simple registration/login page.
I've created my public class AccountController : Controller in this way:
public class AccountController : Controller
{
private readonly UserManager…

Frankie Macca
- 1
- 1
0
votes
1 answer
How to send mail with our domain without being identified as spam?
I am a nodejs developer and I am searching the best way to send email to users (for verifying emails and resetting passwords) with my domaine name and without being identified as spam
how do big companies like facebook do?
is Haraka recommended for…

sam
- 13
- 2
0
votes
1 answer
Could not build url for endpoint Did you mean ' instead?
This part takes care of sending the link to the user. So far it does the job perfectly and I always get the email
app = Flask(__name__)
app.secret_key = 'b11223344AaadD$$r.,IIr]]tP[tu@urr'
app.config.from_pyfile('config.cfg')
mail = Mail(app)
s =…
0
votes
0 answers
confirmation email with a custom user model not working
im having a problem in creating a confirmation email that leads to a view and set up the account.is_active to True
things that keep in mind ,i have a custom user model that abstracts from the User model
the token generator works fine ,i get the…

YahyaST18
- 101
- 1
- 10
0
votes
0 answers
How to generate confirmation code without a conflict in Spring Boot API?
I am making an website that has register and login functionality which works fine. However, I want to add confirmation code process after the registration process.
I can create a random confirmation code in frontend(Angular) side and send it with…

javac
- 441
- 4
- 20
0
votes
1 answer
Devise super do with current record in user controller for sending mails in Ruby on Rails
I'm trying to set up a registration confirmation through email for the users. I'm using devise for authentication. But I could'nt access the saved user resource from the devise controller, though I tried a few tinkers in futile. If some Could lend a…

iarunpaul
- 117
- 2
- 13
0
votes
1 answer
Send email confirmation token as clickable link to user upon registration in ASP.NET Core Web Api
I am using AWS SES service to send email to users.
Upon registration, a token is generated in my AccountServive.sc
var confirmEmailToken = await _userManager.GenerateEmailConfirmationTokenAsync(user);
I have a function in this service…

Mansi
- 313
- 1
- 5
- 10
0
votes
1 answer
User email confirmation options?JWT?
I have a front end in react and a backend in asp.net core web api.
I have already a login with jwt tokens and register using hashing
and salt to store in db.
I want to implement an email confirmation when the user registers in
my site.
Should i use…

Ricardo Nuno
- 89
- 1
- 8
0
votes
2 answers
Send automatical email after save to database
I am new here.
I have a project in Laravel. I have one textarea and data from it is save in datavase. It works good. Now I would like to send automatical email to one specific email address with this data. It must be sent only one time with save to…

Martin
- 11
- 4
0
votes
0 answers
Why the email is not confirm on production (.net postgresql)?
I'm working with .net core and PostgreSQL.
in local, my email is confirmed in my Postgres database but on production, it doesn't work except if I open the console on google chrome?
Do you know why?
on firefox, it doesn't work at all.
thanks
…

Snafu
- 1
- 1
0
votes
2 answers
How to fix 'Invalid Token' on ASP.NET Identity Email Confirmation
I'm trying to have the confirm email validate a new user account. The token is created and emailed to the user which receive an email with a link to validate the account. When the user clicks on the link, I'm getting INVALID TOKEN.
It is hosted on…

Israel Thieme
- 23
- 5
0
votes
1 answer
Email confirmation - strange behavior
Does anyone have an idea why this is happening to me?
In this case, 'result' is 'Success':
public async Task TestConfirmInSameRequest(string userId)
{
var user = await this._userManager.FindByIdAsync(userId);
var code = await…

Kalin Krastev
- 552
- 6
- 19