formmail doesn't send followup email

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default formmail doesn't send followup email

    I made an email list signup form. The cgi is in FormMail. When I submit the
    form, a page appears, saying thenk you, as I expected. When I check my email,
    the acknowledgment hasn't been emailed.

    I looked in the webmail Inbox, and nothing's there.

    Here's the the code from DW:
    <form name="email" method="post"
    action="http://asiaticapparel.com/cgi-bin/formmail.pl">
    <input type="hidden" name="subject" value="email list subscribe">
    <input type="hidden" name="recipient" value="pose4clothes@asiaticapparel.com">
    <input type="hidden" name="redirect"
    value="http://www.asiaticapparel.com/pages/thanks.html">

    And here's what's in the perlscript:
    $mailprog = '/usr/lib/sendmail -i -t';

    @referers =
    ('asiaticapparel.com','72.10.57.233','72.10.57.233 ','signifydesign.com','64.207.
    148.150');

    @recipients =
    &fill_recipients('asiaticapparel.com','^pose4cloth es@asiaticapparel\.com','signi
    fydesign.com','64.207.148.150');

    %Config =
    ('recipient','','subject','','email','pose4clothes @asiaticapparel.com',
    'realname','Asiatic Apparel',


    I can't see what might be missing.

    :embarrassment;

    <form name="email" method="post"
    action="http://asiaticapparel.com/cgi-bin/formmail.pl">
    <table width="418" border="0" cellpadding="5" cellspacing="0"
    id="emailtable">
    <input type="hidden" name="subject" value="email list subscribe">
    <input type="hidden" name="recipient"
    value="pose4clothes@asiaticapparel.com">
    <input type="hidden" name="redirect"
    value="http://www.asiaticapparel.com/pages/thanks.html">

    nickymc Guest

  2. Similar Questions and Discussions

    1. Group email doesn't send because of bad email
      Hi, say I have to email 100 people at once, but one of the email addresses is bad, meaning formatted right but does not exist anymore. Right now,...
    2. Sending email, server has formMail.jsp
      How do I do all this in MX <Form action="http://members.freewebz.com/formMail.jsp method=post <input type=hidden name="blahblah"...
    3. contact - send to formmail after initial php checks
      Hi, I have a contact page that, when submit is clicked it checks the inputs then outputs to a "read only" version of the input form fromwhich the...
    4. contact - send to formmail after initial php checks help plz
      Hi, I have a contact page that, when submit is clicked it checks the inputs then outputs to a "read only" version of the input form fromwhich the...
    5. CDO doesn't send email
      Hi, I'm using CDO object to send email but it doesn't send any email and it does not give an error. My code look like this: Dim iMsg2 Dim...
  3. #2

    Default Re: formmail doesn't send followup email

    is it possible that you have a spam filter that is blocking the email?
    jeremyluby Guest

  4. #3

    Default Re: formmail doesn't send followup email

    i didn't see it in junk mail. but thanks for the suggestion.
    nickymc Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139