SEND FORM RESULTS TO CELL PHONE


With the emergence of Mobile phones, it has become popular to receive email messages on your phone. Now you can have the “results email” sent to your mobile phone. This message can contain different content from the results email that gets sent to the To, CC, and BCC emails. It is versatile so you can use this feature only as an alert or you can have it contain the entire contents of the regular “form results” email.

There are two form fields that need to be configured for this feature.

<input type="hidden" name="cell_to" value="2">

There is not a separate config just for mobile phone fields, therefore the feature runs off the “send to” feature. The above field defines where the “results email” should be sent.

Therefore, your mobile phone “results email” would be sent to mail2@yourdomain.com if your “To” config was as shown below:
$sendto{"1"} = "mail1\@yourdomain.com"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$sendto{"2"} = "mail2\@yourdomain.com";
$sendto{"3"} = "mail3\@yourdomain.com";
$sendto{"4"} = "mail4\@yourdomain.com";
$sendto{"5"} = "mail5\@yourdomain.com";


Note: The config for "cell_to" works exactly like setting up the send to.

<input type="hidden" name="cell_mesfile" value="1">

The above hidden form field specifies which message file to send. This corresponds to the variables $CELL_mesfile{""} specified in bizmail.cgi. Therefore, in the example above, the message file sent to your moblie phone would be: cell.mes.
$CELL_mesfile{"1"} = "cell.mes";
$CELL_mesfile{"2"} = "";
$CELL_mesfile{"3"} = "";


Note: The config for "cell_mesfile" works exactly like setting up the custom form result message files.