12345678910111213141516171819202122232425262728293031 |
- <?php
- $GLOBALS['mailconf']=[
- 'host'=>'smtp.qiye.163.com',
- 'username'=>'yiming@wellobserve.com',
- 'password'=>'Nicksbest8110',
- 'from'=>'yiming@wellobserve.com',
- 'name'=>'Wu Yiming',
- ];
- $GLOBALS['MY_HOST']="https://www.wellobserve.com";
- $GLOBALS['MAILSUB_CONFIRM']="<h2>Confirm Subscription</h2>
- <p>You are subscribing to Yiming's email newsletter from WellObserve.com. Click the link below to confirm:</p><br />
- <a href='{CONFIRMLINK}'>{CONFIRMLINK}</a>
- ";
- $GLOBALS['MAILSUB_REGULAR']="
- <p>This is Yiming's email newsletter from <a href='https://www.WellObserve.com'>WellObserve.com</a>.<br/>
- You can reply to this email for inquiries or questions.</p>
- <p><a href='{EDITSUBSCRIPTION}'>Edit your subscription</a></p><br />
- ";
- $GLOBALS['MAILSUB_WELCOME']="
- <p>You have subscribed to Yiming's email newsletter from <a href='https://www.WellObserve.com'>WellObserve.com</a>. Edit your subscription below:</p><br />
- <a href='{EDITSUBSCRIPTION}'>{EDITSUBSCRIPTION}</a>
- ";
- $GLOBALS['MAILSUB_EDIT']="
- <h2>Edit Subscription</h2>
- <p>Unsubscribe Yiming's newsletter from WellObserve.com: <a href='{UNSUBSCRIBE}'>CONFIRM</a></p><br />
- ";
|