Multiple choice technology operating systems what is the command use to send email with subject? mail -sub "subname" mail -s "subname" "emailid" mail "emailid" (sends an email with default sub line)) none Reveal answer Fill a bubble to check yourself B Correct answer Explanation The mail command uses the -s flag to specify the subject line when sending emails. The correct syntax is 'mail -s "subject" [email protected]', where the subject immediately follows the -s flag. Option A incorrectly uses -sub instead of -s.