emm4.iyamail.com Open in urlscan Pro
124.109.2.117  Public Scan

Submitted URL: http://emm4.iyamail.com/p/ahr0cdovl3d3dy50agfpdglja2v0bwfqb3iuy29tl3zhcmlldhkvp3v0bv9zb3vyy2u9vfrnx0vorvdtjnv0bv9tzwrpdw...
Effective URL: https://emm4.iyamail.com/p/ahr0cdovl3d3dy50agfpdglja2v0bwfqb3iuy29tl3zhcmlldhkvp3v0bv9zb3vyy2u9vfrnx0vorvdtjnv0bv9tzwrpdw...
Submission: On August 12 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

ErrorException: Header may not contain more than a single header, new line detected in file /home/iyamail/www/emm5.iyamail.com/acellemail/vendor/symfony/http-foundation/Response.php on line 359

#0 [internal function]: Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()
#1 /home/iyamail/www/emm5.iyamail.com/acellemail/vendor/symfony/http-foundation/Response.php(359): header()
#2 /home/iyamail/www/emm5.iyamail.com/acellemail/vendor/symfony/http-foundation/Response.php(393): Symfony\Component\HttpFoundation\Response->sendHeaders()
#3 /home/iyamail/www/emm5.iyamail.com/acellemail/vendor/laravel/framework/src/Illuminate/Support/HigherOrderTapProxy.php(34): Symfony\Component\HttpFoundation\Response->send()
#4 /home/iyamail/www/emm5.iyamail.com/acellemail/public/main.php(53): Illuminate\Support\HigherOrderTapProxy->__call()
#5 /home/iyamail/www/emm5.iyamail.com/acellemail/public/index.php(60): require('...')
#6 {main}


/home/iyamail/www/emm5.iyamail.com/acellemail/


ErrorException
Header may not contain more than a single header, new line detected
https://emm4.iyamail.com/p/ahr0cdovl3d3dy50agfpdglja2v0bwfqb3iuy29tl3zhcmlldhkvp3v0bv9zb3vyy2u9vfrnx0vorvdtjnv0bv9tzwrpdw09mdktmdgtmjayncz1dg1fy2ftcgfpz249dmlld2fsbhzhcmlldhk/click/mtcymzizmzkxnjq1ntu2ny42nmi2nzy3y2q0zmvkqhroywl0awnrzxrtywpvci5uzxq
 * Stack trace
 * Request
 * App
 * User
 * Context
 * Debug


Share

SHARE ON FLARE

Docs
Stack trace Request App User Context Debug
Share
Expand vendor frames
 1. * 7
      vendor/symfony/http-foundation/Response.php
      Illuminate\Foundation\Bootstrap\HandleExceptions
      :359
 2. 1 unknown frame
 3. 3 vendor frames…
 4. * 2
      public/main.php
      :53
    * 1
      
      :60

Illuminate\Foundation\Bootstrap\HandleExceptions::handleError
vendor/symfony/http-foundation/Response.php:359

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

     * Sends HTTP headers.

     *

     * @return $this

     */

    public function sendHeaders()

    {

        // headers have already been sent by the developer

        if (headers_sent()) {

            return $this;

        }

 

        // headers

        foreach ($this->headers->allPreserveCaseWithoutCookies() as $name => $values) {

            $replace = 0 === strcasecmp($name, 'Content-Type');

            foreach ($values as $value) {

                header($name.': '.$value, $replace, $this->statusCode);

            }

        }

 

        // cookies

        foreach ($this->headers->getCookies() as $cookie) {

            header('Set-Cookie: '.$cookie, false, $this->statusCode);

        }

 

        // status

        header(sprintf('HTTP/%s %s %s', $this->version, $this->statusCode, $this->statusText), true, $this->statusCode);

 

        return $this;

    }

 

    /**