Gossamer Forum
Home : Products : DBMan : Customization :

Re: [sigrid] Help with Send Record Mod

Quote Reply
Re: [sigrid] Help with Send Record Mod In reply to
I have my db set up where the person sending the record only gets 2 boxes...their name and their friends email address. The subject is hidden and so is the message. This is what I have in my db.cgi send_email sub:

Code:
if ($message) {
chomp($message);
&html_forward_email_form($message);
return;
}
open (MAIL, "$mailprog") || &cgierr("unable to open mail program");
print MAIL "To: $in{'to_email'}\n";
print MAIL "From: $admin_email\n";
print MAIL "Subject: $in{'subject'}\n\n";
print MAIL "Your friend $in{'friend'} found this listing at StayFlorida.com\n";
print MAIL "and thought you might be interested.\n";
print MAIL "\n";
print MAIL "You can view this listing here:\n";
print MAIL "http://www.wdu.net/cgi-local/dbman/db.cgi?db=default&uid=default&view_records=1&ID=$in{'ID'}&ww=1\n";
print MAIL "\n";
print MAIL "Please send $in{'friend'} our thanks to for referring you.\n";
print MAIL "\n";
print MAIL "Sincerely;\n";
print MAIL "\n";
close (MAIL);
&html_forward_email_success;
}

then in my html_send_email sub, I have the subject field and the email message field hidden from all but admin. Works fine for me.
Subject Author Views Date
Thread Help with Send Record Mod sigrid 4277 Jun 27, 2002, 12:56 PM
Thread Re: [sigrid] Help with Send Record Mod
wdu2002 4159 Jun 27, 2002, 2:16 PM
Thread Re: [wdu2002] Help with Send Record Mod
sigrid 4143 Jun 27, 2002, 2:26 PM
Post Re: [sigrid] Help with Send Record Mod
wdu2002 4130 Jun 27, 2002, 2:51 PM
Thread Re: [sigrid] Help with Send Record Mod
LoisC 4134 Jun 28, 2002, 1:02 AM
Thread Re: [LoisC] Help with Send Record Mod
sigrid 4144 Jun 28, 2002, 6:19 AM
Thread Re: [sigrid] Help with Send Record Mod
LoisC 4129 Jun 28, 2002, 8:30 PM
Thread Re: [LoisC] Help with Send Record Mod
sigrid 4119 Jul 1, 2002, 11:40 AM
Thread Re: [sigrid] Help with Send Record Mod
Paul 4127 Jul 1, 2002, 12:38 PM
Post Re: [Paul] Help with Send Record Mod
sigrid 4105 Jul 1, 2002, 2:18 PM