我最近正在做一个电子邮件活动,但是我想自定义页脚内容,包括:
我该怎么做?谢谢!
答案 0 :(得分:0)
您应该两次调用mail()函数;一个用于用户,另一个用于管理员。删除行
List<String> words = ['a', 'B', 'C', 'D', 'E'];
int _wordCount = 0;
List<Widget> _buildWords() {
return words.map((String word) {
return new RaisedButton(
child: new Text(word),
textColor: Colors.black,
new IconButton(icon: new Icon(Icons.add),onPressed:
onPressed: () => Tts.speak(word),()=>setState(()=>_wordCount++))
来自您的代码。然后,根据需要为用户和管理员定义不同的消息。
$headers .= 'Cc: admin@email.com' . "\r\n";
两次使用mail()函数发送不同的电子邮件。
$to="$email";
$subject="Web Enquiry";
$message="....." //your message to user goes here
$to_admin = "admin@email.com";
$subject_admin = "...."; //subject for mail to admin
$message_admin = "....." //your message to admin goes here