电子邮件服务的网站

我试着用我的Gmail帐户发送一封电子邮件,它的工作原理是:

$config = Array( 'protocol' => 'smtp', 'smtp_host' => 'ssl://smtp.googlemail.com', 'smtp_port' => 465, 'smtp_user' => '[email protected]', 'smtp_pass' => 'xxxxxx', 'mailtype' => 'html', 'charset' => 'iso-8859-1' ); $this->load->library('email', $config); $this->email->set_newline("\r\n"); $this->email->from($this->input->post('email')); $this->email->to('[email protected]'); $this->email->subject('Email From user'); $this->email->message('You have received an email from a user.'); $result = $this->email->send(); 

但是,我需要让它在另一台服务器上运行。 现在,电子邮件发送到的实际电子邮件地址是网站的实际名称:[email protected]。 但是,当我尝试将其发送到此电子邮件,它不起作用。 该网站托pipe在rackspace云,但我不确定电子邮件是否通过rackspace云服务。 要问的人不知道答案。 有没有办法找出电子邮件服务的地方,因为我需要一个smtp用户名和密码才能发送电子邮件。

感谢您的回应

  1. 找出是否有任何MXlogging正在使用/播放“nslookup -type = mx(thesite.com – 识别真实站点会有所帮助)”(没有引号,并用实际域replace()文本)。

  2. traceroute或tracert(取决于世界其他地区或Windows)到MX标识的服务器或域,如果MXlogging没有被使用

跟踪的最后一项/条目通常会提供关于服务器所在的位置/与谁在一起的良好提示。