B
ByteWarrior
I have created a query that contains:
- last name
- first name
- email address
- course n°
This is the SQL:
SELECT tblParticipant.Participantname,
tblParticipant.Participantfirstname, tblCouse.Coursedescription,
tblParticipant.Email, tblParticipant.ParticipantCourse
FROM tblTrainers INNER JOIN (tblLocation INNER JOIN (tblCourse INNER
JOIN tblParticipant ON tblCourse.CourseID =
tblParticipant.ParticipantCourse) ON tblLocation.LocationID =
tblCourse.CourseLocation) ON tblTrainers.TrainerID =
tblCourse.CourseTrainer
WHERE (((tblParticipant.ParticipantCourse) Like
[forms]![frmCursus].[CursusID]))
ORDER BY tblParticipant.Participantname;
I want to be able to send all the participants from a course a reminder
mail (each time a new mail). I was trying to use SendObject to do this,
but I can't get it to work.
How can I accomplish this?
- last name
- first name
- email address
- course n°
This is the SQL:
SELECT tblParticipant.Participantname,
tblParticipant.Participantfirstname, tblCouse.Coursedescription,
tblParticipant.Email, tblParticipant.ParticipantCourse
FROM tblTrainers INNER JOIN (tblLocation INNER JOIN (tblCourse INNER
JOIN tblParticipant ON tblCourse.CourseID =
tblParticipant.ParticipantCourse) ON tblLocation.LocationID =
tblCourse.CourseLocation) ON tblTrainers.TrainerID =
tblCourse.CourseTrainer
WHERE (((tblParticipant.ParticipantCourse) Like
[forms]![frmCursus].[CursusID]))
ORDER BY tblParticipant.Participantname;
I want to be able to send all the participants from a course a reminder
mail (each time a new mail). I was trying to use SendObject to do this,
but I can't get it to work.
How can I accomplish this?