Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Mike Portman
Mike Portman
8,335 Points

Formspree _cc not working

Having an issue with the Formspree form. I have it work to send an email to the first, but the cc one isnt working. Documentation is here: https://formspree.io/

Am I missing something?

`<form action="https://formspree.io/firstemail" class="mt-4" method="post"> <div class="form-group"> <label class="aboutP historyaboutP history" for="exampleFormControlInput1">Name</label> <input type="name" class="form-control" id="exampleFormControlInput1" placeholder="Name">

</div>
<div class="form-group">
    <label class="aboutP historyaboutP history" for="exampleFormControlInput2">Subject</label>
    <input type="text" name="_subject" class="form-control" id="exampleFormControlInput2" placeholder="Subject">
</div>

<div class="form-group">
    <label class="aboutP history" for="exampleFormControlInput3">Email Address</label>
    <input type="email" name="_replyto" class="form-control" id="exampleFormControlInput3" placeholder="name@gmail.com">
</div>

<div class="form-group">
    <label class="aboutP history" for="exampleFormControlTextarea1">Message</label>
    <textarea class="form-control" name="textArea" id="exampleFormControlTextarea1" rows="3" placeholder="Message"></textarea>
</div>
<div class="button pt-4">
    <button type="submit" class="formLabel buttonbackground">Submit</button>
</div>
<input type="hidden" name="_cc" value="secondemail@gmail.com" />
<input type="hidden" name="_format" value="plain" />

</form>`