2012-08-25 2 views
1

어떻게 설정했는지 깜빡했습니다. 두 개의 웹 사이트가 있고 두 번째 사이트를 통해 전자 메일을 보냅니다.exim의 보내는 전자 메일 주소 구성

*.google.com:[email protected]:password 
*.google.com:[email protected]:password 

나는 다음과 같은 헤더와 PHP의 mail() 기능을 통해 메일을 보내고있다 :

$headers = 'From: no-reply <[email protected]>' . "\r\n"; 
$headers .= 'MIME-Version: 1.0' . "\r\n"; 
$headers .= 'Reply-To: [email protected]' . "\r\n"; 
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n"; 

하지만 내 고객의 이메일에이 헤더를 얻고있다 :

from: no-reply firstsite.com 
reply-to: secondsite.com 
to: [email protected] 
여기 내 /etc/exim4/passwd.client 파일입니다

exim의 사용자 지정 보내는 전자 메일 주소를 올바르게 설정하는 방법은 무엇입니까?

PS : 나는 스마트 호스트 (Google 앱)

답변

관련 문제