@lulibo how do I access the VHM settings if I am running from xampp?
Originally posted by JonthueM March 28, 2023 I notice that the address that is used for i.e. Fervent foodies is also used for The Conversation. I tried to clear it as you see below on Fervent foodies but php didn't like that lol!
foreach($_POST['growgroups'] as $growgroups)
{
if ($growgroups === 'Fervent Foodies')
{
$mail->Subject = "Interested in Grow Group Fervent Foodies";
$mail->addAddress("sitemaster@1usda.org");
$mail->send();
$mail->addAddress("");
}
if ($growgroups === 'The Conversation')
{
$mail->Subject = "Interested in Grow Group The Conversation";
$mail->addAddress('michel.bkyc@gmail.com');
$mail->send();
}
if ($growgroups === 'Wednesday Night Bible Study')
{
$mail->Subject = "Interested in Grow Group Wedensay Night Bible Study";
$mail->addAddress('michel.bkyc@gmail.com');
$mail->send();
}
if ($growgroups === 'Its Not About Me')
{
$mail->Subject = "Interested in Grow Group It's Not About Me";
$mail->addAddress('michel.bkyc@gmail.com');
$mail->send();
}
if ($growgroups === 'Young Couples Mentorship')
{
$mail->Subject = "Interested in Grow Group Young Couples Mentorship";
$mail->addAddress('sitemaster@1usda.org');
$mail->send();
}
if ($growgroups === 'Whats Next')
{
$mail->Subject = "Interested in Grow Group Whats New";
$mail->addAddress("michel.bkyc@gmail.com");
$mail->send();
}
}
```</div>
See answer in #2887
Originally posted by JonthueM March 28, 2023 I notice that the address that is used for i.e. Fervent foodies is also used for The Conversation. I tried to clear it as you see below on Fervent foodies but php didn't like that lol!
foreach($_POST['growgroups'] as $growgroups)
{
if ($growgroups === 'Fervent Foodies')
{
$mail->Subject = "Interested in Grow Group Fervent Foodies";
$mail->addAddress("sitemaster@1usda.org");
$mail->send();
$mail->addAddress("");
}
if ($growgroups === 'The Conversation')
{
$mail->Subject = "Interested in Grow Group The Conversation";
$mail->addAddress('michel.bkyc@gmail.com');
$mail->send();
}
if ($growgroups === 'Wednesday Night Bible Study')
{
$mail->Subject = "Interested in Grow Group Wedensay Night Bible Study";
$mail->addAddress('michel.bkyc@gmail.com');
$mail->send();
}
if ($growgroups === 'Its Not About Me')
{
$mail->Subject = "Interested in Grow Group It's Not About Me";
$mail->addAddress('michel.bkyc@gmail.com');
$mail->send();
}
if ($growgroups === 'Young Couples Mentorship')
{
$mail->Subject = "Interested in Grow Group Young Couples Mentorship";
$mail->addAddress('sitemaster@1usda.org');
$mail->send();
}
if ($growgroups === 'Whats Next')
{
$mail->Subject = "Interested in Grow Group Whats New";
$mail->addAddress("michel.bkyc@gmail.com");
$mail->send();
}
}
```</div>
…tring) of type string is deprecated