# messageId & emailId
messageId
is the number of the message returned by submitting an SMTP request .
emailId
is the email number returned by sendcloud, which can correspond to a recipient of a request.
The relationship between the two is as follows:
to = [A, B, C]
emailId_A = messageId + to.index(A) + '$' + A
emailId_B = messageId + to.index(B) + '$' + B
emailId_C = messageId + to.index(C) + '$' + C
# Note:
* Position does not make up the number of digits.
* Whether or not to contains duplicate values, the order of the returned emailId list and the send list is the same
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
Example :
# to = ["ben@ifaxin.com", "joe@ifaxin.com", "bida@ifaxin.com", ... , "lianzimi@ifaxin.com"]
1425758592214_4576_32113_9310.sc-10_10_127_105-inbound # messageId
1425758592214_4576_32113_9310.sc-10_10_127_105-inbound0$ben@ifaxin.com # emailId
1425758592214_4576_32113_9310.sc-10_10_127_105-inbound1$joe@ifaxin.com # emailId
1425758592214_4576_32113_9310.sc-10_10_127_105-inbound2$bida@ifaxin.com # emailId
...
1425758592214_4576_32113_9310.sc-10_10_127_105-inbound99$lianzimi@ifaxin.com # emailId
1
2
3
4
5
6
7
2
3
4
5
6
7