send email with command line mailer - basics

To send simple email, use required parameters -FROM to specify sender email address and -TO to specify recipients address. Also, use command line mailer -TEXT parameter to specify email message body.

To send more advanced emails with command line mailer, view advanced example page.

Example: send simple email message using -TO, -FROM and -TEXT parameters.

C:\>febootimail -FROM david@sender.com -TO info@febooti.com -TEXT "Sending email with command line mailer is very simple!" 

Example: send basic email message using -TO, -FROM, -TEXT and -SUBJECT parameters.

C:\>febootimail -FROM david@sender.com -TO info@febooti.com -TEXT "Sending email with command line mailer is very simple!" -SUBJECT "Email from Command line mailer" 

Note: in command line mailer examples above, localhost (127.0.0.1) is used as SMTP mail server. If you are not using febooti Command line email on server and, if there is no local SMTP server, specify SMTP server using -SMTP parameter. If SMTP server authentication is required, use -AUTH, -USER and -PASS parameters.

Example: authenticate with external SMTP mail server and send simple email.

C:\>febootimail -FROM david@sender.com -TO info@febooti.com -TEXT "Sending email with command line mailer is very simple!" -SUBJECT "Command line mailer authentication" -SMTP email.server.com -AUTH AUTO -USER david -PASS ******** 
Additional Command line email notes and resources:

Please do not hesitate to contact our support department with any possible further questions or to solve practical issues connected with Command line email.