didn"t the email protocol of a long time ago allow recipients to set more than one? Or is there any other reason why the mail system has to design an extra redundant function?
didn"t the email protocol of a long time ago allow recipients to set more than one? Or is there any other reason why the mail system has to design an extra redundant function?
is not redundant, it is a necessary classification. The recipient is the direct target, which generally refers to the person directly related to this email, such as the executor of the task. CC means notification, notification, and the recipient is not directly related, but you need to know the content of the email, such as the leader in charge or other relevant people.
The advantage ofclassification is that the person who receives the email immediately knows what he or she should do with the email. If it is the recipient, you should read it and deal with it as soon as possible. If it is a CC, you usually do not need to read and process it right away. You can read it when you are free.
paste the email sending process found at your fingertips:
1QQSMTP,25 //2,
2:
"From:<@.com>\r\n" //()
"To:<@.com>\r\n"; //()
"Subject:\r\n\r\n" //
"" //
3EHLO
4STARTTLSTLS
5AUTH LOGIN
6QQBase64
7MAIL FROM,QQ.
8RCPT TO
9DATA
10,\r\n.\r\n
11QUIT
you can see that the email address is the one in TO, and the rest of the information, including CC, is actually at the end of the content.
in addition, in daily work, receiving mail is generally regarded as the party directly related to / responsible for the content of E-mail, and CC as the informing party, is also equivalent to a consensus, which is easy to be messed up?
Aliyun s server port 25 is blocked, and the application cannot be unblocked for many times, and the customer s mail server is only configured with port 25 protocol. Now you want to use js to send mail directly on the browser, and the environment is in ...
I would like to ask the following, because it is a stand-alone version of PC software and there is no intermediate server, I want to build the function of sending email with smtp in the software to facilitate users to send feedback. There are the follow...
if you want to use ubuntu + postfix + laravel to do a mass email system. but if there are too many emails, it will be 504 if you send them for a while. This problem can be solved with set_time_limit (0) but feels too inefficient. is there any other wa...
Centos var mailboxextmail.orgemail.xfindzp.comxfindzp.com ...
1. Related code: public static void sendSSLMessage (String hostName, int port, String username, String password, String subject, String massage, String. To) throws EmailException { Email email = new SimpleEmail(); email.setCharset("UTF-8&q...
problem description I wrote an email class, and everything went well, but something went wrong when the attachment name was changed to Chinese the environmental background of the problems and what methods you have tried uses python3* and email pac...
the following two methods should not be mentioned, because they have been tried, and each has its own disadvantages, so it has been decided to give up and will not be considered . 1. Embed img images, and src write a URL < src= "xxxx?email=12345@xx.co...
nodemailer "nodemailer ": "^4.6.8 ",501QQ501 let transporter = nodeMailer.createTransport ({ host:Email.smtp.host, port:465, secure:true, auth:{ user:Email.smtp.user, pass:Email.smtp.pass, } }) let ko = { c...