%%[
var @EmailAddress, @CCID, @SubmitDate, @Brand, @sendId, @completed, @completedcheck, @firstname
SET @CCID = RequestParameter("_subscriberkey")
SET @EmailAddress = RequestParameter("EmailAddress")
SET @SubmitDate = now()
SET @sendId = RequestParameter("sendId")
SET @Brand = "Cereal MB"
SET @firstname = RequestParameter("firstname")
SET @completedcheck = Lookup("Cereals_WCD_2025_Submissions", "cereal_location", "CCID", @CCID)
IF NOT EMPTY(@completedcheck) THEN
SET @completed = "y"
ENDIF
]%%