Почта с сервера, отправленная мне или другим людям, приходит в спам. Я настроил SPF, DKIM, DMARC на сервере своем (web-hosting). Проверил, что все правильно работает – тут – https://dmarcguide.globalcyberalliance.org Но почта все равно приходит в спам. Люди советуют добавить что-то в Header или настроить SMTP, но все они пишут про библиотеку “PHPMailer”. . Пытаюсь найтиRead more
I’m using PHPMailer to send applications for jobs and can send over all the data except for the file e.g. word doc, PDF’s. The process is; <input type=”file” name=”uploaded_file” class=”uploaded_file”> Which then goes to a jQuery file; var uploaded_file $ form.find(‘.uploaded_file’).val(); Then it goes to PHP file to send; $ mail->addAttachment($ uploaded_file); However when theRead more