我要使用以下方法向多个收件人发送消息:
message.addRecipient(Message.RecipientType.TO, String arg1);
或者
message.setRecipients(Message.RecipientType.TO,String arg1);
但是在第二个论点中有一个困惑,那就是如何传递多个地址,比如:
message.addRecipient(Message.RecipientType.CC, "abc@abc.example,abc@def.example,ghi@abc.example");
或者 AddRecipient (消息 recipienttype.cc : “ abc@abc.example; abc@def.example; ghi@abc.example”) ;
我也可以使用其他方法发送消息,但我想知道上述方法的用途。
如果我不能使用它(到目前为止,我还没有得到任何答案以上的要求) ,那么什么是这个方法的邮件 API 的需要。