Help for this page

Select Code to Download


  1. or download this
    require MIME::Lite;
    
    ...
      Type => 'text/html',
      Data => $some_html,
    );
    
  2. or download this
    send_by_smtp ARGS...
        Instance method.  Send message via SMTP, using Net::SMTP.  The opt
    +ional ARGS
    ...
        fields.
    
        Returns true on success, false or exception on error.
    
  3. or download this
    # change the delivery method and then call vanilla instance method sen
    +d()
    MIME::Lite->send(’smtp’, "smtp.myisp.net", Timeout=>60);
    # ...
    $msg->send();
    
  4. or download this
    $msg->send(’smtp’, "smtp.myisp.net");