«email-templates» 태그된 질문

1
마 젠토 1의 거래 이메일에 의존 여부
거래 이메일 또는 뉴스 레터에서 수표를 조사하고 있으며 http://merch.docs.magento.com/ce/user_guide/store-operations/email-transactional.html을 보고 있습니다 . 아래 코드를 찾으십시오. 내 질문 :이 DEPEND 또는 IF를 사용하여 변수의 존재 또는 공허함을 확인할 수 있습니까? 같은 것 {{if customer.getFirstname()}} {{var customer.firstname}} {{else} {{var customer.name}} {{/if}} 링크의 예 Depend Condition {{depend order.getIsNotVirtual()}} {{/depend}} {{depend salable}} {{/depend}} - …

4
맞춤 이메일 헤더를 만드는 방법
거래 이메일 새 주문 템플릿에서 볼 수있는 헤더 html 파일을 호출하는이 태그가 있습니다. app/locale/en_US/template/email/html {{template config_path="design/email/header"}} 새 헤더를 만들고 새 파일을 app/local/en_US/template/email/html/header2.html만들고 코드를 사용하고 싶습니다. {{template config_path="design/email/header2"}} 그러나 작동하지 않습니다. 이 코드를 사용하면 이메일에 헤더가 포함되지 않습니다. 사용자 정의 이메일 헤더를 작성하는 올바른 방법은 무엇입니까?

2
거래 이메일 : 'sales_email_order_items'템플릿을 만드는 방법 (또는 adminhtml 템플릿을 재정의하는 방법)
거래 이메일 코드에서 나는 이것을 본다 : {{layout handle="sales_email_order_items" order=$order}} {{var items_html}} 이 템플릿 파일은 다음과 같습니다. /app/design/adminhtml/default/default/template/email/order/items.phtml 핵심 파일을 덮어 쓰지 않도록 테마로 새 폴더를 만들려고했습니다. /app/design/our_theme/default/default/template/email/order/items.phtml 그러나 이것은 작동하지 않는 것 같습니다. 단순히 코어를 덮어 쓰지 않고이 파일을 재정의하는 적절한 방법이 있습니까?

3
템플릿 이메일 magento2에서 데이터 유형 html을 렌더링하는 방법은 무엇입니까?
Magento 2에 이메일 템플릿이 있습니다. email-template.html {{template config_path="design/email/header_template"}} {{trans "%body" body=$data.body}} {{template config_path="design/email/footer_template"}} 그러나 변수 $data.body에는 텍스트가 아닌 코드 html이 있습니다. $data.body = ` <table width="100%"> <tr> <td>Name: </td> <td>Join Xanka </td> </tr> <tr> <td>Email: </td> <td>xanka@gmail.com</td> </tr> {{depend Test Send}} <tr> <td>Subject: </td> <td>Test Send</td> </tr> {{/depend}} <tr> <td>Message: …


2
Magento2-명령 줄-블록 템플릿을 사용하여 이메일 보내기-오류 : 필수 인수 $ debugHintsPath가 없습니다.
커맨드 라인에서 Magento 2로 이메일을 보내려고 할 때 아래 예외가 발생했습니다. 프론트 엔드 또는 백엔드 컨트롤러에서 이메일을 보내기 위해 동일한 클래스를 사용하는 동안 완벽하게 작동했습니다. 명령 행 인터페이스를 사용하여 문제가 심각하게 발생했습니다. 예외: main.CRITICAL : 'Magento \ Developer \ Model \ TemplateEngine \ Plugin \ DebugHints의 $ debugHintsPath 인수가 누락되었습니다'라는 …

3
관리자의 이메일 템플릿
Magento Transactional Emails에 이상한 문제가 있습니다. 로컬, 개발 및 프로덕션 서버에 동일한 파일이 있습니다. 에서 관리> 시스템> 거래 이메일> 새 템플릿을 추가 드롭 다운에서 템플릿을 선택하고 로컬을 영어 (미국)로 남겨 둡니다. 이 필드는 개발 및 프로덕션 서버에서 채워지지 않지만 로컬에서 올바르게 작동합니다. 권한 오류라고 생각했지만 검사 후 템플릿 파일에서 코드를로드하는 …

1
이메일 템플릿 'custom_mail_template'이 (가) 정의되지 않았습니다
맞춤 모듈에서 메일을 보내려고합니다. 이를 위해 system.xml파일을 만들었지 만 오류를 반환합니다. 오류: 이메일 템플리트 'custom_mail_template'이 (가) 정의되지 않았습니다. 내 코드는 다음과 같습니다 <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd"> <system> <tab id="custom" translate="label" sortOrder="1"> <label>custom mail</label> </tab> <section id="custom" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1"> <label>custom mail</label> <tab>custom</tab> <resource>Learning_Custom::config_custom</resource> <group id="mail" translate="label" …

2
이메일 템플릿에 foreach 루프를 추가하는 방법이 있습니까?
고객이 주문한 후 우편을 보내려고합니다. 이 이메일에는 주문한 제품의 모든 교차 판매 제품이 포함됩니다. 다음 링크를 참조로 사용했습니다. 이벤트 관찰자를 사용하여 이메일 보내기 고급 거래 이메일 템플릿 모두 잘 작동합니다. 그러나 이제 내 의심은 로케일 디렉토리에 있는 html 파일 내부에서 foreach 루프를 사용할 수 있습니까? 메일 템플릿의 모든 제품 정보를 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.