#!/bin/sh # # Script to gather results from the surrealist survey and mail them # the to server adminstrator. This version actually mails the results. NKF=/usr/local/bin/nkf TMP=/tmp/mailcensus.$$ echo "おとな相談室の結果" >> $TMP echo "----------------------" >> $TMP echo >> $TMP echo "名前: $WWW_theName" | $NKF -e >> $TMP echo "性別: $WWW_theSex" >> $TMP echo "年齢: $WWW_theAge" >> $TMP echo "Email: $WWW_theAddress" >> $TMP echo >> $TMP echo "相談内容:$WWW_theMessage" | $NKF -e >> $TMP # You've got all the results formatted in the temp file, now # mail and remove it. # 自分メールアドレスをいれなきゃだめ! /usr/ucb/mail -s "Adult Question's Results" (あなたのメールアドレス) < $TMP rm $TMP # Finally, give a nice message back to your reader. # echo Content-type: text/html echo echo "
" echo "とりあえず,御相談を承りました. " echo "私なりに思うことがありましたら,御返事を差し上げます." echo ""