Help for this page

Select Code to Download


  1. or download this
    sub as_string {
      my $self = shift;
      return $self->__head->as_string
        . ($self->{mycrlf} || "\n")  # XXX: replace with ->crlf
        . $self->body_raw;
    }
    
  2. or download this
    sub as_string {
      my $self = shift;
      return $self->header_obj->as_string . $self->crlf . $self->body;
    }