회원메일발송 사진 첨부 관련 질문드립니다.
본문
안녕하세요 챗 gpt한테 물어봐서 첨부한 사진 파일을 회원메일발송기능으로 보내는 것 까지는 성공했습니다. 근데 이렇게 되면 항상 CID랑 경로를 제가 직접 입력해야만 보내줄 수 있어서요.
어떻게하면 함수같은 걸 써서 자동으로 CID화랑 경로 추출을 할까요? gpt한테 물어보고
코드는 그럴듯한데 되는 코드가 없더라고요 ㅠㅠ.
-----------------------------------------------------------------------------------------------------------
1. allow_url_fopen
문제 해결
서버 설정에서 allow_url_fopen
이 0
으로 설정되어 있어서 외부 URL을 통해 파일을 가져올 수 없습니다. 이를 해결하기 위해서는 두 가지 접근 방법이 있습니다.
서버 설정 변경
서버의 PHP 설정을 변경하여 allow_url_fopen
을 1
로 설정해야 합니다. 이를 위해서는 웹 호스팅 제공업체에 요청하거나, 서버에 대한 접근 권한이 있다면 직접 php.ini
파일을 수정합니다. php.ini
에서 다음과 같이 설정을 변경합니다:
-----------------------------------------------------------------------------------------------------------
이건 gpt 답변인데 제가 건들 수 있는게 맞나 싶고요.
그누보드 5.6.4 쓰고 닷홈은 무료버전 쓰고 있습니다.
아래 소스코드는 ib/mailer.lib.php 파일입니다. config.php에서 smtp설정한 것 말고는 다른 파일은 건든 것이 없습니다.
<?php
if (!defined('_GNUBOARD_')) exit;
include_once(G5_PHPMAILER_PATH.'/PHPMailerAutoload.php');
// 메일 보내기 (파일 여러개 첨부 가능)
// type : text=0, html=1, text+html=2
function mailer($fname, $fmail, $to, $subject, $content, $type=2, $file="", $cc="", $bcc="")
{
global $config;
global $g5;
// 메일발송 사용을 하지 않는다면
if (!$config['cf_email_use']) return;
if ($type != 1)
$content = nl2br($content);
$result = run_replace('mailer', $fname, $fmail, $to, $subject, $content, $type, $file, $cc, $bcc);
if( is_array($result) && isset($result['return']) ){
return $result['return'];
}
$mail_send_result = false;
try {
$mail = new PHPMailer(); // defaults to using php "mail()"
if (defined('G5_SMTP') && G5_SMTP) {
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = G5_SMTP; // SMTP server
if(defined('G5_SMTP_PORT') && G5_SMTP_PORT)
$mail->Port = G5_SMTP_PORT;
/* 추가 */
$mail->SMTPAuth = true;
$mail->SMTPSecure = G5_SMTP_SECURE;
$mail->Username = G5_SMTP_USER;
$mail->Password = G5_SMTP_PW;
/* 추가 끝 */
}
$mail->CharSet = 'UTF-8';
$mail->From = $fmail;
$mail->FromName = $fname;
$mail->Subject = $subject;
$mail->AltBody = ""; // optional, comment out and test
$mail->msgHTML($content);
$mail->addAddress($to);
if ($cc)
$mail->addCC($cc);
if ($bcc)
$mail->addBCC($bcc);
//print_r2($file); exit;
if ($file != "") {
foreach ($file as $f) {
$mail->addAttachment($f['path'], $f['name']);
}
}
// 이미지 CID 첨부 추가
// 파일 경로는 예시로 제공된 이미지 파일의 경로를 사용하세요
$mail->addEmbeddedImage(G5_PATH.'/data/editor/2408/c3cb22671109dd1265fb3938b6871942_1724307239_6789.jpg', 'image_cid', 'c3cb22671109dd1265fb3938b6871942_1724307239_6789.jpg');
// 이메일 본문에 CID 참조
$content = str_replace('<img src="http://lonzup.dothome.co.kr/data/editor/2408/c3cb22671109dd1265fb3938b6871942_1724307239_6789.jpg">', '<img src="cid:image_cid">', $content);
$mail->msgHTML($content);
$mail = run_replace('mail_options', $mail, $fname, $fmail, $to, $subject, $content, $type, $file, $cc, $bcc);
$mail_send_result = $mail->send();
} catch (Exception $e) {
}
run_event('mail_send_result', $mail_send_result, $mail, $to, $cc, $bcc);
return $mail_send_result;
}
// 파일을 첨부함
function attach_file($filename, $tmp_name)
{
// 서버에 업로드 되는 파일은 확장자를 주지 않는다. (보안 취약점)
$dest_file = G5_DATA_PATH.'/tmp/'.str_replace('/', '_', $tmp_name);
move_uploaded_file($tmp_name, $dest_file);
$tmpfile = array("name" => $filename, "path" => $dest_file);
return $tmpfile;
}
감사합니다.
!-->답변 1
$mail->addEmbeddedImage(G5_PATH.'/data/editor/2408/c3cb22671109dd1265fb3938b6871942_1724307239_6789.jpg', 'image_cid', 'c3cb22671109dd1265fb3938b6871942_1724307239_6789.jpg');
이부분을 수정을 해야한데 G5_DATA_URL 로 변경해보세요