Ich versuche, eine Rails link_to-Anweisung innerhalb einer Mailer-E-Mail zu setzen, die den vollständigen Pfad enthält (dh - http://localhost/contacts/id/confirm ). Die link_to-Anweisung, die ich versuche, funktioniert in meiner Standardansicht in /pages/options, aber nicht in der Mailer-E-Mail.
Hier ist mein /pages/options Controller Code:
class PagesController < ApplicationController
def options
end
end
Und hier ist die Seiten/Optionen-Ansicht:
<div>
<%= link_to "here", :controller => "contacts", :action => "confirm",
:only_path => false, :id => 17 %>
</div>
Wenn ich diesen Link in den folgenden Mailer (welcome_email.html.rb) einfüge, erhalte ich den folgenden Fehler. Für jede Hilfe wäre ich Ihnen sehr dankbar.
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
</head>
<body>
<%= link_to "here", :controller => "contacts", :action => "confirm",
:only_path => false, :id => 17 %>
</body>
</html>
Die Fehlermeldung:
RuntimeError in Contacts#create
Showing C:/Documents and Settings/Corey Quillen/My Documents/Dev/Dev
Projects/my_project
Project/my_project/app/views/user_mailer/welcome_email.html.erb where line #7
raised:
Missing host to link to! Please provide :host parameter or set
default_url_options[:host]
Extracted source (around line #7):
4: <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
5: </head>
6: <body>
7: <%= link_to "here", :controller => "contacts", :action => "confirm", :only_path
=> false, :id => 17 %>
8: </body>
9: </html>