diff --git a/app/views/host_mailer/host_built.html.erb b/app/views/host_mailer/host_built.html.erb
index 5133410f140..829eab57ab6 100644
--- a/app/views/host_mailer/host_built.html.erb
+++ b/app/views/host_mailer/host_built.html.erb
@@ -6,8 +6,12 @@
<%= link_to @host, host_url(:id => @host) %> |
- <%= _("IP") %> |
+ <%= _("IPv4") %> |
<%= @host.ip %> |
+
+ <%= _("IPv6") %> |
+ <%= @host.ip6 %> |
+
diff --git a/app/views/host_mailer/host_built.text.erb b/app/views/host_mailer/host_built.text.erb
index e7e0ae515d9..e493cd7a503 100644
--- a/app/views/host_mailer/host_built.text.erb
+++ b/app/views/host_mailer/host_built.text.erb
@@ -2,7 +2,8 @@
<%= _("Your host has finished building:") %>
<%= _("Hostname:") %> <%= @host.fqdn %>
- <%= _("IP:") %> <%= @host.ip %>
+ <%= _("IPv4:") %> <%= @host.ip %>
+ <%= _("IPv6:") %> <%= @host.ip6 %>
<%= _("View in Foreman:") %>
<%= host_url(:id => @host) %>