Questions tagged [confirmation-email]
68 questions
0
votes
1 answer
Confirmation email sent to user in vb.net to mysql database
Just want to ask if there is some way to add automatic email confirmation to vb.net website.
I want that user create new account in the website and the website sent the confirmation link to them. Only if the confirmation email is clicked the user…

Petr St
- 39
- 8
0
votes
2 answers
How can I prepare the full URL of a web application in a confirmation mail in java
In my application, I would like to send an email to the user who created a new account to confirm his email. As usual, there will be a URL to be clicked by the user in the mail. However, I couldn't figure out how the full URL of the web application…

suat
- 4,239
- 3
- 28
- 51
0
votes
2 answers
how to send a confirmation email in asp.net, cannot get IIS pickup directory error
I want to send a confirmation email to user in registration page. The following code is the related part:
try
{
SmtpClient sc = new SmtpClient();
System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage();
string Ema =…

rockenpeace
- 1,011
- 5
- 18
- 29
0
votes
1 answer
Rails: Devise: post-confirmation error
I am trying to send an email to the event administrator, after the user confirms.
See: Rails: Devise: Sending an email after user comfirms registration
I wrote an EventMailer class as follows:
class EventMailer < ActionMailer::Base
@user = User
…

EastsideDev
- 6,257
- 9
- 59
- 116
0
votes
2 answers
PHP/MYSQL - Subscription Email - How do they accomplish something like this?
I would like to have a aspect of my site that users can use to sign up for a newsletter.
I am not 100% what the best way to accomplish this task would be.
What I can think of is very simple:
One input with a submit button, the user enters their…

Craig van Tonder
- 7,497
- 18
- 64
- 109
-1
votes
1 answer
Send custom confirmation email in Devise depending on role defined in the database
I am using Devise for registration of a site with confirmable. However, I have two different roles for this site. The first role is the "main" role that uses the regular Devise signup procedure. Accounts in a second role are supposed to be created…

Tree
- 1,248
- 2
- 11
- 9
-1
votes
1 answer
Attendance Confirmation Page
I am creating a page where students log in their attendance for a class by putting in their SID and a key provided by the professor. Then it will go through the servlet and post that the student was there on a google spreadsheet (backend). My…

whw
- 1
-5
votes
1 answer
Verify Email and Update MySQL DB Column
Need help in creating a verify.php / confirm.php for my site after registration. Email is already being sent to the email of user with a confirmation link. I need the link to work like this:
When link is clicked, user will be directed to our site…

Cisco1991
- 64
- 13