「;」で区切られたメールアドレスの文字列を取得します 次のようになります。
geve@krag.de;;;Tobias@nxs.de;Wissel@weg.de;Sand@nex.de;Claudia@bea.de;;
私はこれらの電子メール アドレスに予定を送信したいです。サンプルを 1 人に送信します。
Dim appointment As New EWS.Appointment(esb)
appointment.Subject = "Einladung zu einem Termin"
appointment.Body = txtThema.Text
appointment.Start = Von
appointment.End = Bis
appointment.Location = "Raum 202 Kleinostheim"
appointment.RequiredAttendees.Add("geve@krag.de") // HERE ARE THE Attendees
appointment.Save(EWS.SendInvitationsMode.SendToAllAndSaveCopy)
彼がメールを送るので、最初のアドレス以外のすべてのメールアドレスが必要です。どうやってやるの?
あなたの助けを前もって感謝します