Jump to content

How to edit contact us ....


david thompson

Recommended Posts

Ok, added but I get this error... when someone sends

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its

recipients. This is a permanent error. The following address(es) failed:

ceo@bmibaby-virtual.net

No Such User Here

regards

Link to comment
Share on other sites

Ok, added but I get this error... when someone sends

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its

recipients. This is a permanent error. The following address(es) failed:

ceo@bmibaby-virtual.net

No Such User Here

regards

That looks like a bounce detection. Make sure the email address is valid and spelled correctly. I have that running on my site with no issues.

Link to comment
Share on other sites

<h3>Contact Us</h3>

<form method="post" action="<?php echo url('/contact'); ?>">

<table width='100%' border='0'>

<tr>

<td><strong>Name:</strong></td>

<td>

<?php

if(Auth::LoggedIn())

{

echo Auth::$userinfo->firstname .' '.Auth::$userinfo->lastname;

echo '<input type="hidden" name="name"

value="'.Auth::$userinfo->firstname

.' '.Auth::$userinfo->lastname.'" />';

}

else

{

?>

<input type="text" name="name" value="" />

<?php

}

?>

</td>

</tr>

<tr>

<td width="1%" nowrap><strong>E-Mail Address:</strong></td>

<td>

<?php

if(Auth::LoggedIn())

{

echo Auth::$userinfo->email;

echo '<input type="hidden" name="name"

value="'.Auth::$userinfo->email.'" />';

}

else

{

?>

<input type="text" name="email" value="" />

<?php

}

?>

</td>

</tr>

<tr>

<td><strong>Subject: </strong></td>

<td><input type="text" name="subject" value="<?php echo $_POST['subject'];?>" /></td>

</tr>

<tr>

<td><strong>Recipient:</strong></td>

<td><select name="recipient">

<option value="ceo@bmibaby-virtual.net">David Thompson - CEO</option>

<option value="vceo@bmibaby-virtual.net">Kris Thomson - Vice CEO</option>

</select></td>

</tr>

<tr>

<td><strong>Message:</strong></td>

<td>

<textarea name="message" cols='45' rows='5'><?php echo $_POST['message'];?></textarea>

</td>

</tr>

<tr>

<td width="1%" nowrap><strong>Security</strong></td>

<td>

<?php

echo recaptcha_get_html(Config::Get('RECAPTCHA_PUBLIC_KEY'), $captcha_error);

?>

</td>

</tr>

<tr>

<td>

<input type="hidden" name="loggedin" value="<?php echo (Auth::LoggedIn())?'true':'false'?>" />

</td>

<td>

<input type="submit" name="submit" value='Send Message'>

</td>

</tr>

</table>

</form>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...