redacademy / rethink-spring-2019

http://rethink.van.cp.academy.red
0 stars 0 forks source link

invalid attribute mailto #14

Open resonantdoghouse opened 5 years ago

resonantdoghouse commented 5 years ago

Currently this link will not work as the attribute is invalid. It's very close to being valid, you just need to add an href and then set mailto inside of the href attribute e.g.

<a href="mailto:email@example.com" etc...

or to match your code

<a href="mailto:<?php echo $member['email_address']; ?>">

Here's more info e.g. how to include a subject line: https://www.rapidtables.com/web/html/mailto.html#examples

https://github.com/redacademy/rethink-spring-2019/blob/307420d5cbf582d8ec53264cf482a660768a4ccb/themes/rcforward/page-team.php#L31