Help for this page

Select Code to Download


  1. or download this
    $smtp->datasend("--$boundary\n");
    
  2. or download this
    $smtp->datasend("--$boundary--\n");
    
  3. or download this
    # Generate a new boundary to use.
    # The unsupported $VANILLA is for test purposes only.
    ...
    sub gen_boundary {
        return ( "_----------=_" . ( $VANILLA ? '' : int(time) . $$ ) . $B
    +Count++ );
    }