Flo007HH Posted August 3, 2004 Report Share Posted August 3, 2004 Suche die ganze Zeit nach einem Modul oder ?hnlichem was ein Kundenkonto erst aktiviert, wenn der Kunde seine E-Mails abgerufen hat und auf den Link geklickt hat. Halt ne Best?tigungsmail mit einem Link drinnen, wo erst dann der Account freigeschaltet wird, wenn der Link in der Mail angeklickt wurde. F?r OSCommerce habe ich glaube ich schonmal so ein Modul gefunden. Link to comment Share on other sites More sharing options...
Guest HHGAG Posted August 3, 2004 Report Share Posted August 3, 2004 M?sste portiert und angepasst werden =) Link to comment Share on other sites More sharing options...
Matthias Posted August 3, 2004 Report Share Posted August 3, 2004 M?sste extra Programmiert werden, falls du es haben willst melde ich mal unter [email protected] Dann kann ich dir nen Angebot daf?r machen. mfg Matthias Link to comment Share on other sites More sharing options...
Flo007HH Posted August 5, 2004 Author Report Share Posted August 5, 2004 so, habe mir das jetzt selber getippselt. funktioniert auch bestens...frage ist nur, ob meine L?sung wirklich so elegant war/ist?! habe diese zeilen in create_account hinzugef?gt: $smarty->assign('email',$email_address); xtc_php_mail(EMAIL_SUPPORT_ADDRESS,EMAIL_SUPPORT_NAME,$email_address , $name , EMAIL_SUPPORT_FORWARDING_STRING, EMAIL_SUPPORT_REPLY_ADDRESS, EMAIL_SUPPORT_REPLY_ADDRESS_NAME, '', '', EMAIL_SUPPORT_SUBJECT, $html_mail, $txt_mail); // datenbank abfrage f?r email validation if(!$ergebnis['validation_status'] == 1){ session_destroy(); header('Location: emailvalidation.php?mode=success&email='.$email_address); exit(); } if (!isset($mail_error)) { xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART, '', 'SSL')); } else { echo $mail_error; } } wie man sieht, nutze ich session_destroy(); was w?re eleganter? Link to comment Share on other sites More sharing options...
Flo007HH Posted August 7, 2004 Author Report Share Posted August 7, 2004 hat keiner einen Verbesserungsvorschlag oder ist das so ok? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.