Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
1k views

Best practices for email confirmation codes

I'm creating a PHP website which involves users signing up, and I'm wondering about best practices for "email confirmation" codes. New users must confirm their email addresses - I do this by ...
3
votes
2answers
604 views

Manually logging in a user without password

I hope you can help me figure the best way to implement a manual (server-side initiated) login without using the password. Let me explain the workflow: User registers Thank you! An email with an ...
2
votes
2answers
72 views

How can i send email making a confimation link to click it?

models.py: class Users(models.Model): username = models.CharField(max_length=255) slug = models.CharField(max_length=255, default='0') password = models.CharField(max_length=300) ...
2
votes
2answers
122 views

Rails User Sign Up Mail Confirmation

I'm trying to create a mailer that sends out an email whenever a user signs up. Pretty simple but I'm new to rails. I have a site that already creates the user. I have a login and sign up page that ...
1
vote
0answers
34 views

Removing Confirmation From Mailchimp

This is the code for adding mails to mailchimp's list: <link href="http://cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css"> <style type="text/css"> ...
1
vote
1answer
33 views

Rails 3 w/ Devise: How to show message on all pages if user hasn't confirmed email address?

I am developing a Rails 3 app using the Devise gem for authentication. I'm also using the confirmable module of Devise to send emails to users when they sign up, asking them to confirm their email ...
0
votes
1answer
92 views

How do I create a email confirmation?

I'm trying to make a simple email notification when a user signs up. My user sign up works fine, and I followed the "Sending Email" tutorial exactly but can't get it to work. What am I doing wrong? ...
0
votes
0answers
35 views

Rails Mail Gem Not Creating Mailers

I've installed the mail gem to simply send a confirmation email!! when a new user registers and am going through hell trying to find out why this isn't working. My user registration works fine. sign ...
0
votes
1answer
65 views

How can I send a registration confirmation email with devise

I'm building a rails3 application (hosted on Heroku) and I'm using devise for user authentication. I would like to send a confirmation email every time a new user signs up to my app, that is ...
0
votes
2answers
241 views

how to get forgot password with grails application using spring security core plugin?

In my grails application,i am using spring security core plugin for security,and email confirmation plugin for email validity,now i need to implement code for forget password. Do i need to use spring ...