pentestgeek / phishing-frenzy

Ruby on Rails Phishing Framework
www.phishingfrenzy.com
GNU General Public License v3.0
794 stars 297 forks source link

Clickable link in email has http// instead of http:// #392

Closed yeddish closed 6 years ago

yeddish commented 6 years ago

It may be something I'm doing wrong, but when I check my email template file, it has the full http:// in the link, but when the email hits my inbox, it only has http//
I'm not sure if I'm doing something wrong or it's a bug. Here's a snippet from my .erb file:

<a href="http://<%= @url %>" style="text-decoration:none;color:#0066cc;font-size:15.75pt" target="_blank">
Payroll &amp; Commissions - 04302018</a>
<div style="height:5px"></div>
yeddish commented 6 years ago

Apparently, the example template I was looking at was wrong. The http:// shouldn't be in the template at all, just <%= @url %>

Closing. Hope it helps someone else.