I tried to send it through my website @badbot , I do not know my credentials for the roundcube
@TheCrafters @badbot So after I created the account, I tried again through my site and I couldn’t get the email to go through, what do I do?
@badbot I have sent the email to that address
> @badbot said:
@Dragnorian
Okay so if the contact form is still not working, debugging is needed.Is that a wordpress contact form? If so you may be able to alter config inside the wordpress admin console. It may be trying to send from old config trying to authenticate old smtp mail server.
I’m getting 403 on submit
http://nerdodevelopmenttesting.unaux.com/send_contact.php?then lands on
http://nerdodevelopmenttesting.unaux.com/redirect.com
I would have to see the source of send_contact.php
I just changed the redirection, it shouldn’t lead anywhere. This isn’t any kind of wordpress, custom made. It worked on my school server that I no longer have access too, here is the source:
`
; $space = ' '; $line = ' '; foreach ($_POST as $key => $value) { if ($req == '1') { if ($value == '') {echo $key is empty;die;} } $j = strlen($key); if ($j >= 40) {echo Name of form element $key cannot be longer than 40 characters;die;} $j = 20 - $j; for ($i = 1; $i <= $j; $i++) {$space .= ' ';} $value = str_replace('
', $line, $value); $conc = {$key}:$space{$value}$line; $text .= $conc; $space = ' '; } //'From: '.$emailadd.'' mail($emailadd, $subject, $text, From: .WEB_CONTACT_SUBMISSION.
); echo ''; ?>
`
`<?php
//--------------------------Set these paramaters--------------------------
// Subject of email sent to you.
$subject = ‘Subject’;
// Your email address. This is where the form information will be sent.
$emailadd = ‘[email protected]’;
// Where to redirect after form is processed.
$url = ‘redirect.com’;
// Makes all fields required. If set to ‘1’ no field can be empty. If set to ‘0’ any or all fields can be empty.
$req = ‘0’;
// --------------------------Do not edit below this line--------------------------
$text = Submission Information:
;
$space = ’ ';
$line = ’
‘;
foreach ($_POST as $key => $value)
{
if ($req == ‘1’)
{
if ($value == ‘’)
{echo $key is empty;die;}
}
$j = strlen($key);
if ($j >= 40)
{echo Name of form element $key cannot be longer than 40 characters;die;}
$j = 20 - $j;
for ($i = 1; $i <= $j; $i++)
{$space .= ’ ‘;}
$value = str_replace(’
’, $line, $value);
$conc = {$key}:$space{$value}$line;
$text .= $conc;
$space = ’ ';
}
//‘From: ‘.$emailadd.’’
mail($emailadd, $subject, $text, From: .WEB_CONTACT_SUBMISSION.
);
echo ‘’;
?>
`
> @badbot said:
It seems like the form is processing. It may be the mx records have not propagated yet. If you don’t get any emails in your gmail (spam box) by the end of tomorrow, and no bounce in your roundcube. Try changing the gmail address to you roundcube address. Try the form with that. Just a test.
It looks like it should be working. If I get time I’ll look at the phpmailer On the forum and see how they do it.
I also did try to use my roundcube email and never got a bounce to it
> @badbot said:
It seems like the form is processing. It may be the mx records have not propagated yet. If you don’t get any emails in your gmail (spam box) by the end of tomorrow, and no bounce in your roundcube. Try changing the gmail address to you roundcube address. Try the form with that. Just a test.
It looks like it should be working. If I get time I’ll look at the phpmailer On the forum and see how they do it.
Hey mate, so I waited some days to see if the issue would work, it sadly still does not. However I did see the forwarder option and I put in my roundcube email and to forward it to my gmail account but it would not allow me too. What else can we do?
> @Dragnorian said:
@badbot said:
It seems like the form is processing. It may be the mx records have not propagated yet. If you don’t get any emails in your gmail (spam box) by the end of tomorrow, and no bounce in your roundcube. Try changing the gmail address to you roundcube address. Try the form with that. Just a test.It looks like it should be working. If I get time I’ll look at the phpmailer On the forum and see how they do it.
Hey mate, so I waited some days to see if the issue would work, it sadly still does not. However I did see the forwarder option and I put in my roundcube email and to forward it to my gmail account but it would not allow me too. What else can we do?
Hi,
Gmail is blocking forwarder emails and automatically deleting them.
You may use antoher service to forward emails to like Outlook Mail, Tutanota, ProtonMail etc.