Gmail ve Codeigniter veya Godaddy ile hotmail sorun?

0 Cevap php

Ben kurulum Codeigniter e-posta kütüphanesi ile bir mail gönderen var.

Bir kullanıcı adresi olarak Gmail veya Hotmail adresini belirtir kadar her şey gayet iyi çalışıyor.

örneğin

$email = $this->input->post('something@gmail.com');

Bu bana cevap için sadece bir dönüş adresidir. E-posta kendisi Godaddy e-posta hesabından gönderilir.

Herkes CodeIgniter e-kütüphane veya sadece bir e-posta adresi belirterek iade iletiler teslim edilemez neden nerede Godaddy hosting ile benzer sorunları olmuştur Im merak.

The debugger shows no errors when the form is submitted. If I change the value of the users email address just before sending the email örneğin. string replace gmail to xgmail the mail is sent flawlessly.

İşte benim yapılandırma dizidir

'protocol' => 'sendmail',
'smtp_host' => 'smtpout.secureserver.net',
'smtp_port' => 25,
'smtp_user' => 'info@website.com',
'smtp_pass' => 'password',
'mailtype' => 'text');

Ive smtp_hosts gibi bir gmail ve GoDaddy çalıştı. İki kere ne zaman

$email = $this->input->post('email');

posta teslim geçmez bir gmail veya hotmail adresi.

Ive cevaplar için net taranmış ama cant benzer herhangi bir sorunları bulmak gibi görünüyor.

EDIT: daha net yapmak için çalıştı.

0 Cevap