1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- //EDM运营商SendCloud 服务 测试用的
- //$API_USER = 'huchunmei_test_MtAENa';
- //$API_KEY = 'P4kOVkggxD4czaJk';
- //独立站群发邮件
- $EMAIL_SUBJECT_LIST = array(
- "alipearlhair" => array(
- "1"=>"order confirm",
- "2"=>"Hi!Your Order Has Arrived!" ,
- ),
- );
- $EMAIL_MSG_LIST = array(
- "alipearlhair" => array(
- "1" => "<p>Hello %name%,<br />
- This is Alipearl hair company, we will arrange order delivery ASAP,<br />
- Before shipping, pls check your order details and address again,<br />
- %name%<br />
- %address%<br />
- Attension:<br />
- We ship order to shipping address, so, pls check your order shipping </p>
- <p>address again,<br />
- if it's right address, pls reply mail "Yes"; <br />
- if you need to change the address, pls reply us new right address </p>
- <p>directly,<br />
- when we receive the email, we will arrange fast delivery for you,<br />
- Thank you for your cooperation,<br />
- Alipearl Hair team</p>",
- "2" => "<p>Hello,<br />
- Thank you for your purchasing from Alipearl Hair.<br />
- We tracked the delivery, the package has reached your local, the delivery men will ship order to you today, pls note to sign the order.<br />
- This is your order tracking number, %logistics_number%.<br />
- If you have question or difficulty, be free to contact us.<br />
- when you received the order, before using, we want to share some hair care tips, hope this is useful for you, and welcome to give suggestions:<br />
- 1.Pls wash the hair with warm water, and never comb the hair when washing.<br />
- 2.Washing with good shampoo and conditioner, run with fingers slightly, don’t rub the hair.<br />
- 3.After washing, pls let the hair dry natural, or you can blow the hair Semi-dry, then let them dry natural, by this way, the hair will not be dry.<br />
- 4.For curly wave hair, pls don’t comb the hair from the top to the end, run with your finger is Okay, attention, pls use the Widen Tooth Comb, <br />
- For some hair care method, if you don’t know how to process, pls contact us, we are willing to talk with you<br />
- Have a good time</p>
- ",
- ),
- );
- //性别
- $SEX_TYPE = array(
-
- 1 => '男',
- 2 => '女',
-
- );
- //生日类型
- $BIRTHDAY_TYPE = array(
-
- 1 => '阳历',
- 2 => '阴历',
-
- );
- //婚否
- $MARRAY_TYPE = array(
-
- 1 => '未婚',
- 2 => '已婚',
-
- );
|