Create New Email Account

I can not find the answer to this question. How I will program the creation of new email accounts. I have users who have subscribed to my service and would like to create an email account to use their name@mysite.com, but it does not seem to find out.

I use ruby ​​on rails.

+4
source share
1 answer

I found a great article on how to use the RubyOnRails.org action mail program Action_Mailer_Basics This walkthrough gives examples of how to create emails using scripts. You can also store your mail user accounts in a database on the email server documentation. A script can be used to create user accounts in the database, and then send the user credentials to the user who has registered on your site. This structure will help you solve your problem.

+2
source

Source: https://habr.com/ru/post/1400743/


All Articles