email - PhP e-mail auto e-mail response -
on website have promotion going on users input name , e-mail , send them e-mail same title, same text , voucher image @ end embedded/inserted onto e-mail (not attached).
we thought able copy paste on past 6 weeks have sent out on 1000 e-mails , undo able more.
we have php code sends info. know add @ end of php when inputs e-mail , name can automatically send e-mail them "template" title, text , image?
i have tried many different things programmes newsletter senders not auto-responders. can't use gmail auto response either because receive other e-mails different things well. don't want send promo e-mails us.
any help?
cheers.
check github sendemail repository. allows send emails through php. can can set sendemail repository in project whenever enter email id run php script.for configuring sendemail provided on github.
link: https://github.com/mogaal/sendemail
script this:
$message = "thank interest. possible.<br />sincerely,<br />(my name)"; $subject = "confirmation"; $headers2 = "from: $webmaster\r\n"; $headers2 .= "content-type: text/html\r\n"; mail($leademail, $subject, $message, $headers2);
Comments
Post a Comment