如何在 rails 应用上的 ruby 上创建一个向您发送电子邮件的 HTML 表单

How to Create an HTML Form That Sends You an Email on my ruby on rails app

如何从 ruby 在 rails 网站上发送电子邮件 我不想将数据存储在我的数据库中。我只想像这种简单的形式发送电子邮件

<form action="mailto:nourfiverr@gmail.com" method="post" enctype="text/plain">
 Name:<br>
<input type="text" name="name"><br>
 E-mail:<br>
<input type="text" name="mail"><br>
Comment:<br>
<input type="text" name="comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>

此表单无效

正如我从您的代码中看到的,您基本上是在询问如何在 Rails 中实现一个简单的联系表单。您可能想在此处查看 gem mail_form https://github.com/heartcombo/mail_form