ms-auth/proto/email/v1/email.proto
Vyacheslav1557 5af1a98b49 feat: init
2024-07-15 02:26:34 +05:00

17 lines
299 B
Protocol Buffer

syntax = "proto3";
package proto.email.v1;
import "google/protobuf/empty.proto";
service EmailService {
rpc SendEmail (SendEmailRequest) returns (google.protobuf.Empty);
}
message SendEmailRequest {
string token = 1;
repeated int32 user_ids = 2;
string subject = 3;
string body = 4;
}