<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[케이보드 신규글 메일로 오게하는것 답글은 안오게하고싶습니다.]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/32947</link>
		<description><![CDATA[<p>제목처럼,</p>

<p>케이보드에서 '최신글 이메일 알림'에 이메일을 입력하면 신규글이 메일로 오잖아여~~</p>

<p>근데 답글단 것 까지 와서, 문의드립니다.</p>

<p>고객이 쓴 신규글만 메일이 오게하는 방법이 있을까요?</p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[해당 코드는 최신글 이메일 알림 설정을 답글인지 체크해서 동적으로 설정을 바꿉니다.

그렇기 때문에 ...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/32977</link>
			<description><![CDATA[<p>해당 코드는 최신글 이메일 알림 설정을 답글인지 체크해서 동적으로 설정을 바꿉니다.</p>

<p>그렇기 때문에 최신글 이메일 알림 설정에 따라 보내기보다는</p>

<p>게시판 id로 구분해서 보내야 할 듯합니다.</p>

<p>아래의 코드로 교체해서 테스트해보시겠어요?</p>

<pre>
<code class="language-php">add_action('kboard_pre_document_insert', 'my_kboard_pre_document_insert', 10, 4);
function my_kboard_pre_document_insert($uid, $board_id, $content, $board){
	if(in_array($board-&gt;id, array('1', '2', '3'))){
		if($content-&gt;parent_uid){
			$board-&gt;meta-&gt;latest_alerts = '';
		}
		else{
			$board-&gt;meta-&gt;latest_alerts = '이메일주소';
		}
	}
}</code></pre>

<p>위의 코드에서 array('1', '2', '3') 부분은 실제 게시판 id로 적용해보시겠어요?</p>

<p>이메일주소도 실제 알림 보낼 이메일 주소로 적용해보세요.</p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Wed, 08 May 2019 09:15:27 +0000</pubDate>
			<category>KBoard</category>
		</item>
				<item>
			<title><![CDATA[우선 답변 감사합니다~

그런데 제가 '최신글 이메일 알림'을 설정해놓은 게시판은 한개인데

다른게시...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/32973</link>
			<description><![CDATA[<p>우선 답변 감사합니다~</p>

<p>그런데 제가 '최신글 이메일 알림'을 설정해놓은 게시판은 한개인데</p>

<p>다른게시판에 글을 올릴때도 같이 와버리네요 ㅠ ㅠ..</p>

<p>최신글 이메일 알림 설정해놓은 게시판의 글만 메일로 받아보고싶습니다ㅠㅠ...</p>]]></description>
			<author>yooooung</author>
			<pubDate>Wed, 08 May 2019 08:56:26 +0000</pubDate>
			<category>KBoard</category>
		</item>
				<item>
			<title><![CDATA[안녕하세요~^^

KBoard 플러그인에서 게시글 작성 시 답글일 때는 메일 알림을 안 보내고 싶으신 건지요...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/32962</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>KBoard 플러그인에서 게시글 작성 시 답글일 때는 메일 알림을 안 보내고 싶으신 건지요?</p>

<p>워드프레스 관리자 -&gt; 외모 -&gt; 테마 편집기 페이지에서 functions.php 파일 하단에</p>

<p>아래의 코드를 추가해보시겠어요?</p>

<pre>
<code class="language-php">add_action('kboard_pre_document_insert', 'my_kboard_pre_document_insert', 10, 4);
function my_kboard_pre_document_insert($uid, $board_id, $content, $board){
	if($content-&gt;parent_uid){
		$board-&gt;meta-&gt;latest_alerts = '';
	}
	else{
		$board-&gt;meta-&gt;latest_alerts = '이메일주소';
	}
}</code></pre>

<p>위의 코드에서 이메일주소 부분에는 실제 알림 받을 이메일 주소로 교체해보시겠어요?</p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Wed, 08 May 2019 07:32:44 +0000</pubDate>
			<category>KBoard</category>
		</item>
			</channel>
</rss>