如何从控制台 Win 将正文添加到 mailto 链接?

Bob*_*o87 1 mailto email cmd

我有这个问题:

我正在尝试从命令行发送电子邮件,但如果我这样做:

邮寄地址:example@rat.it?subject=subject&body=body

cmd 返回我:“body” non è riconosciuto come comando interno oesterno, un programma eseguibile o un file batch。

我只设法写了一封带有主题而没有正文的电子邮件,如何添加正文?

请帮我

Ste*_*han 6

almost there...

This works:

  start mailto:"example@rat.it?subject=subject&body=body"
Run Code Online (Sandbox Code Playgroud)

EDIT: but it puts an extra "to the beginning of the address... (you can avoid the extra " at the end of the body by inserting a space in front of it)

EDIT2: but this works:

start "" "mailto:example@rat.it?subject=subject&body=body "
Run Code Online (Sandbox Code Playgroud)