调用linux的“mailx的”通过Java代码:消息文本始终进入附件(Calling Linux&

2019-10-20 07:13发布

由于我的SMTP提供商对能够在一天内发送的电子邮件的数量限制,我写了一个Java代码来调用Linux系统的“mailx的”,我的Java程序运行上。

下面是代码:

package sys.cmd;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;

public class IntermediateJavaLinuxMailX {

    public static void main(String[]args) throws IOException{
        email(
                new ArrayList<String>(){{
                    add("myemailid@myserver.com");
                    add("myothermailid@otherserver.com");
                }},
                "Error Message",
                "Hello World!\r\n This is message"
        );
    }

    public static void email(
            List<String>toEmailIds,
            String subject,
            String msgText
            ) throws IOException{
        String toEmails = toString(toEmailIds);
        String[]args=new String[]{"/bin/sh" , "-c", "mailx -s \""+subject+"\" "+toEmails};
        System.out.println("The command for bash is: "+args[2]);
        Process proc= Runtime.getRuntime().exec(args);
        OutputStream o = proc.getOutputStream();//probable output for text
        InputStream i = new ByteArrayInputStream(msgText.getBytes());//probable input for message-text
        read2end(i, o);
        o.close();
    }

    private static String toString(List<String> toEmailIds) {
        StringBuilder sb= new StringBuilder();
        for(String toEmailId:toEmailIds){
            sb.append(toEmailId).append(' ');
        }
        return sb.toString();
    }

    private static void read2end(InputStream i, OutputStream o) throws IOException {
        byte[]b=new byte[1000];
        for(int a=0;(a=i.read(b))>-1;)
            o.write(b, 0, a);
        i.close();
    }

}

问题是:在收件人方收到的电子邮件,文本不是在消息体,但它是在“NONAME”命名的附件文件。

现在的问题是:如何让我的字符串msgText出现在电子邮件的消息主体。


加入我这样做是远远一两件事:


我写另一个代码,即使用临时文件,用于存储消息的文本&然后使用文件重定向( < ),用于将消息文本与它给出希望的结果。 但是,这是一种间接的方式。 是否有任何直接的方式? 下面是另一个代码:

    public static void email(
            List<String>toEmailIds,
            List<String>ccEmailIds,
            List<String>bccEmailIds,
            String subject,
            byte[][]attachContents,
            String messageText
            ) throws IOException{
        String toEmails=toString(" " , toEmailIds,' ');
        String ccEmails=notEmpty(ccEmailIds)?toString(" -c ", ccEmailIds,','):"";
        String bcEmails=notEmpty(bccEmailIds)?toString(" -b ", bccEmailIds,','):"";
        String recip=bcEmails+ccEmails+toEmails;
        String[]attachmentTempFiles=new String[notEmpty(attachContents)?attachContents.length:0];
        String attachFilePaths="";
        for(int x = 0;x<attachmentTempFiles.length;++x){
            String attachTempPath = "/path/temp/attach_"+x+".file";
            byteArray2File(attachContents[x],attachTempPath);
            attachmentTempFiles[x]=" -a "+attachTempPath;
            attachFilePaths+=attachmentTempFiles[x];
        }
        String msgTxtTempFilePath="/path/temp/msg.txt";
        byteArray2File(messageText.getBytes(), msgTxtTempFilePath);
        msgTxtTempFilePath=" < "+msgTxtTempFilePath;
        String mailxCommand = "mailx " + attachFilePaths + " -s \"" + subject +"\" "+ recip + msgTxtTempFilePath;
        Runtime.getRuntime().exec(new String[]{"/bin/sh" , "-c", mailxCommand});
    }

    private static void byteArray2File(byte[] bs, String path) throws IOException {
        FileOutputStream fos=new FileOutputStream(path);
        ByteArrayInputStream bais=new ByteArrayInputStream(bs);
        read2end(bais, fos);
        fos.close();
    }

    private static boolean notEmpty(byte[][] bs) {
        return bs!=null && bs.length>0;
    }

    private static boolean notEmpty(List<String> strings) {
        return strings!=null && !strings.isEmpty();
    }

    private static String toString(String pre, List<String> toEmailIds,char separator) {
        StringBuilder sb= new StringBuilder(pre);
        for(String toEmailId:toEmailIds){
            sb.append(toEmailId).append(separator);
        }
        return sb.substring(0,sb.length()-1);
    }

    private static void read2end(InputStream i, OutputStream o) throws IOException {
        byte[]b=new byte[1000];
        for(int a=0;(a=i.read(b))>-1;)
            o.write(b, 0, a);
        i.close();
    }

-编辑- @Serge贝勒斯特的评论后添加:

“嗯,我试着用搜索引擎四周,发现流水线到Linux mailx的纯文本文件变成‘内容类型:应用程序/八位字节流’(附件)请问您的问题是一样的可以肯定的,你可以控制的头?接收到的消息?”


此代码也曾经有过同样的效果:

        email(
                new ArrayList<String>(){{add("user_abc@mail1.com");add("person-xyz@mailer2.com");}},
                "Error Message",
                "Content-Type: text/plain; charset=us-ascii\r\n" +
                "Content-Disposition: inline\r\n\r\n" +
                "Hello World!\r\n" +
                "This is message.\r\n\r\n\r\n"
        );

尽管如此,所有的消息文本进入“NONAME”命名的附件。

Answer 1:

编辑:通过正确的解决方案取代了傻事

mailx在大多数Linux发行版中发现的命令是传家宝mailx的 。 它还能做得更多的事情比原来的BSD的mailx和是否有任何非打印字符编码自动的输入*。

这里的问题是,它consideres该\r字符是不标准,所以它增加了以下标题的邮件:

Content-Type: application/octet-stream
Content-Transfert-Encoding: base64

和电子邮件的文本是有效Base 64编码。 这是不是一个真正的attachement,但许多读者的邮件处理此类邮件与未命名的附加文件的空体。

所以解决的办法是删除所有\r从邮件的正文。

事实上,如果您的LANG环境变量声明了一个区域,可以使用非7位字符(éèûôüö...)的mailx似乎是足够聪明的声明扩展字符集的(ISO-8859-1 FR区域),并做quoted-可打印的编码。 因此,即使在消息中(至少西欧)非7位ASCII字符,只要没有控制chararacters,邮件应该正常发送。

最后的机会,解决办法是不使用的mailx和直接使用sendmail。



文章来源: Calling Linux's “mailx” through java code: message-text always goes into attachment