Sendgrid Web API set multiple users in reply_to field with C# -
i´m using sendgrid email service library c# , trying set multiple users in replyto field.
this code sends e-mail
var msg = new sendgridmessage() { subject = somesubject, = new mailaddress("from@mail.com", "from name"), = new mailaddress[] {new mailaddress("destination@mail.com","destinationname")}, bcc = new mailaddress[] { new mailaddress("bccdestination@mail.com", "bccdestinationname"), }, replyto = new mailaddress[]{ new mailaddress("someone@email.com", "jhon doe"), new mailaddress("jsmith@email.com", "jhon smith"), }, html = somehtml };
when check email sended, , try answer it, appears first mail address (someone@email.com) added , there no trace of second 1 (jsmith@email.com). can do?
Comments
Post a Comment