···105105// RECORDTYPE: AdminDefs_ModEventEmail
106106type AdminDefs_ModEventEmail struct {
107107 LexiconTypeID string `json:"$type,const=com.atproto.admin.defs#modEventEmail" cborgen:"$type,const=com.atproto.admin.defs#modEventEmail"`
108108+ // comment: Additional comment about the outgoing comm.
109109+ Comment *string `json:"comment,omitempty" cborgen:"comment,omitempty"`
108110 // subjectLine: The subject line of the email sent to the user.
109111 SubjectLine string `json:"subjectLine" cborgen:"subjectLine"`
110112}
+2
api/atproto/adminsendEmail.go
···12121313// AdminSendEmail_Input is the input argument to a com.atproto.admin.sendEmail call.
1414type AdminSendEmail_Input struct {
1515+ // comment: Additional comment by the sender that won't be used in the email itself but helpful to provide more context for moderators/reviewers
1616+ Comment *string `json:"comment,omitempty" cborgen:"comment,omitempty"`
1517 Content string `json:"content" cborgen:"content"`
1618 RecipientDid string `json:"recipientDid" cborgen:"recipientDid"`
1719 SenderDid string `json:"senderDid" cborgen:"senderDid"`