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

PHP Build a Basic PHP Website (2018) Adding a Basic Form Utilizing Object Properties and Methods

Debashis Pati
Debashis Pati
3,864 Points

I am getting error "Message could not be sent.Mailer Error: You must provide at least one recipient email address."

$email_body = ""; $email_body .= "Name ".$name."\n"; $email_body .= "Email ".$email."\n"; $email_body .= "Details ".$details."\n";

$mail->setFrom($email, $name); $mail->addAddress('localhost', 'Debashis'); // Add a recipient

$mail->isHTML(false); // Set email format to HTML

$mail->Subject = 'Personal Media Library Suggestion from'; $mail->Body = $email_body;

if(!$mail->send()){ echo 'Message could not be sent.'; echo 'Mailer Error: ' . $mail->ErrorInfo; echo exit; }

This is the code and I am using my localhost

Please suggest me what I need to write in this line $mail->addAddress('localhost', 'Debashis'); .

Regards, Debashis Pati

1 Answer

Matthew Underhill
Matthew Underhill
20,361 Points

Can you post your full code please and in the proper format in markdown.