routeNotificationFor(static::via); $o = $this->setupEchomail($echoarea); Log::info(sprintf('%s:+ Sending Matrix Message to [%s]',self::LOGKEY,$echoarea->name)); $our = our_address($echoarea->domain)->last(); $o->to = 'All'; $o->from = $this->mo->sender; $o->datetime = Carbon::createFromTimestampMs($this->mo->ts); $o->subject = $this->mo->topic; $o->fftn_id = $our->id; $o->kludges->put('CHRS:','UTF8 2'); // Message $o->msg = $this->mo->message; $o->set_origin = sprintf('Matrix %s (%s)',$this->mo->room,$our->ftn4d); $o->save(); return $o; } }