package notifications import ( messaging "github.com/tech/sendico/pkg/messaging/envelope" internalsite "github.com/tech/sendico/pkg/messaging/internal/notifications/site" "github.com/tech/sendico/pkg/model" ) func ContactRequest(sender string, request *model.ContactRequest) messaging.Envelope { return internalsite.NewContactRequestEnvelope(sender, request) }