-c and -b options not working in mailx in ubuntu
Clash Royale CLAN TAG#URR8PPP
I was trying to send a mail from the shell script using the command
mailx -s "TEST MAIL" -c "user_name ..." user<message.txt
but it generates an error as unrecognized option -c
,the same happens if i
use -b
as a option for blind copy, so what options do i need to use for cc and bcc here ???
shell-script ubuntu io-redirection mailx mail-command
add a comment |
I was trying to send a mail from the shell script using the command
mailx -s "TEST MAIL" -c "user_name ..." user<message.txt
but it generates an error as unrecognized option -c
,the same happens if i
use -b
as a option for blind copy, so what options do i need to use for cc and bcc here ???
shell-script ubuntu io-redirection mailx mail-command
See unix.stackexchange.com/a/445229/117549 and unix.stackexchange.com/a/285415/117549; one of those may work
– Jeff Schaller
Dec 17 at 15:08
add a comment |
I was trying to send a mail from the shell script using the command
mailx -s "TEST MAIL" -c "user_name ..." user<message.txt
but it generates an error as unrecognized option -c
,the same happens if i
use -b
as a option for blind copy, so what options do i need to use for cc and bcc here ???
shell-script ubuntu io-redirection mailx mail-command
I was trying to send a mail from the shell script using the command
mailx -s "TEST MAIL" -c "user_name ..." user<message.txt
but it generates an error as unrecognized option -c
,the same happens if i
use -b
as a option for blind copy, so what options do i need to use for cc and bcc here ???
shell-script ubuntu io-redirection mailx mail-command
shell-script ubuntu io-redirection mailx mail-command
asked Dec 17 at 13:52
Noshiii
2717
2717
See unix.stackexchange.com/a/445229/117549 and unix.stackexchange.com/a/285415/117549; one of those may work
– Jeff Schaller
Dec 17 at 15:08
add a comment |
See unix.stackexchange.com/a/445229/117549 and unix.stackexchange.com/a/285415/117549; one of those may work
– Jeff Schaller
Dec 17 at 15:08
See unix.stackexchange.com/a/445229/117549 and unix.stackexchange.com/a/285415/117549; one of those may work
– Jeff Schaller
Dec 17 at 15:08
See unix.stackexchange.com/a/445229/117549 and unix.stackexchange.com/a/285415/117549; one of those may work
– Jeff Schaller
Dec 17 at 15:08
add a comment |
1 Answer
1
active
oldest
votes
Debian and Ubuntu have replaced Heirloom mailx
with s-nail mailx
. Both support the -b
and -c
options. But there are other mailx
commands from other packages which do not.
I suspect that you, too, are unknowingly using the GNU Mailutils mailx
or the NMH mailx
. The latter re-spells the -c
option as -cc
but has no equivalent for -b
. The former has no direct equivalents for either, requiring that headers be injected using a generic mechanism. (Note that, strictly speaking, -b
and -c
control envelope not headers, although the distinction between them is blurry at the level of mailx
.)
Further reading
mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 14.04 manual pages.s-nail
. User commands. s-nail. Debian manual pages.mailx
. User commands. GNU mail utils. Debian manual pages.mailx
. General Commands Manual. BSD mailx. Debian manual pages.mailx
. User commands. NMH. Debian manual pages.- Difference between mail and mailx?
- https://unix.stackexchange.com/a/469833/5132
See the thing is none of the mail service was pre installed on ubuntu,I explicitly installed gnu mailutils ,so what you suggest in my case ????
– Noshiii
Dec 17 at 15:45
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f489477%2fc-and-b-options-not-working-in-mailx-in-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Debian and Ubuntu have replaced Heirloom mailx
with s-nail mailx
. Both support the -b
and -c
options. But there are other mailx
commands from other packages which do not.
I suspect that you, too, are unknowingly using the GNU Mailutils mailx
or the NMH mailx
. The latter re-spells the -c
option as -cc
but has no equivalent for -b
. The former has no direct equivalents for either, requiring that headers be injected using a generic mechanism. (Note that, strictly speaking, -b
and -c
control envelope not headers, although the distinction between them is blurry at the level of mailx
.)
Further reading
mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 14.04 manual pages.s-nail
. User commands. s-nail. Debian manual pages.mailx
. User commands. GNU mail utils. Debian manual pages.mailx
. General Commands Manual. BSD mailx. Debian manual pages.mailx
. User commands. NMH. Debian manual pages.- Difference between mail and mailx?
- https://unix.stackexchange.com/a/469833/5132
See the thing is none of the mail service was pre installed on ubuntu,I explicitly installed gnu mailutils ,so what you suggest in my case ????
– Noshiii
Dec 17 at 15:45
add a comment |
Debian and Ubuntu have replaced Heirloom mailx
with s-nail mailx
. Both support the -b
and -c
options. But there are other mailx
commands from other packages which do not.
I suspect that you, too, are unknowingly using the GNU Mailutils mailx
or the NMH mailx
. The latter re-spells the -c
option as -cc
but has no equivalent for -b
. The former has no direct equivalents for either, requiring that headers be injected using a generic mechanism. (Note that, strictly speaking, -b
and -c
control envelope not headers, although the distinction between them is blurry at the level of mailx
.)
Further reading
mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 14.04 manual pages.s-nail
. User commands. s-nail. Debian manual pages.mailx
. User commands. GNU mail utils. Debian manual pages.mailx
. General Commands Manual. BSD mailx. Debian manual pages.mailx
. User commands. NMH. Debian manual pages.- Difference between mail and mailx?
- https://unix.stackexchange.com/a/469833/5132
See the thing is none of the mail service was pre installed on ubuntu,I explicitly installed gnu mailutils ,so what you suggest in my case ????
– Noshiii
Dec 17 at 15:45
add a comment |
Debian and Ubuntu have replaced Heirloom mailx
with s-nail mailx
. Both support the -b
and -c
options. But there are other mailx
commands from other packages which do not.
I suspect that you, too, are unknowingly using the GNU Mailutils mailx
or the NMH mailx
. The latter re-spells the -c
option as -cc
but has no equivalent for -b
. The former has no direct equivalents for either, requiring that headers be injected using a generic mechanism. (Note that, strictly speaking, -b
and -c
control envelope not headers, although the distinction between them is blurry at the level of mailx
.)
Further reading
mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 14.04 manual pages.s-nail
. User commands. s-nail. Debian manual pages.mailx
. User commands. GNU mail utils. Debian manual pages.mailx
. General Commands Manual. BSD mailx. Debian manual pages.mailx
. User commands. NMH. Debian manual pages.- Difference between mail and mailx?
- https://unix.stackexchange.com/a/469833/5132
Debian and Ubuntu have replaced Heirloom mailx
with s-nail mailx
. Both support the -b
and -c
options. But there are other mailx
commands from other packages which do not.
I suspect that you, too, are unknowingly using the GNU Mailutils mailx
or the NMH mailx
. The latter re-spells the -c
option as -cc
but has no equivalent for -b
. The former has no direct equivalents for either, requiring that headers be injected using a generic mechanism. (Note that, strictly speaking, -b
and -c
control envelope not headers, although the distinction between them is blurry at the level of mailx
.)
Further reading
mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 16.04 manual pages.mailx
. Ubuntu 14.04 manual pages.s-nail
. User commands. s-nail. Debian manual pages.mailx
. User commands. GNU mail utils. Debian manual pages.mailx
. General Commands Manual. BSD mailx. Debian manual pages.mailx
. User commands. NMH. Debian manual pages.- Difference between mail and mailx?
- https://unix.stackexchange.com/a/469833/5132
answered Dec 17 at 15:33
JdeBP
33.2k468156
33.2k468156
See the thing is none of the mail service was pre installed on ubuntu,I explicitly installed gnu mailutils ,so what you suggest in my case ????
– Noshiii
Dec 17 at 15:45
add a comment |
See the thing is none of the mail service was pre installed on ubuntu,I explicitly installed gnu mailutils ,so what you suggest in my case ????
– Noshiii
Dec 17 at 15:45
See the thing is none of the mail service was pre installed on ubuntu,I explicitly installed gnu mailutils ,so what you suggest in my case ????
– Noshiii
Dec 17 at 15:45
See the thing is none of the mail service was pre installed on ubuntu,I explicitly installed gnu mailutils ,so what you suggest in my case ????
– Noshiii
Dec 17 at 15:45
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f489477%2fc-and-b-options-not-working-in-mailx-in-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See unix.stackexchange.com/a/445229/117549 and unix.stackexchange.com/a/285415/117549; one of those may work
– Jeff Schaller
Dec 17 at 15:08