+ Antworten
Ergebnis 1 bis 1 von 1

Thema: Check Mail

  1. #1
    Tom
    Tom ist offline
    TP-Insider Tom macht sich hier sehr viel Mühe Avatar von Tom
    Registriert seit
    May 2001
    Ort
    Am Zürisee
    Beiträge
    847

    Check Mail

    Probmlem gelöst!!

    Hallo Zusammen

    von webcreate verwende ich dieses Flash-Teil: link

    Nun würde ich gerne das Email auf @ und . direkt mit AS checken lassen. Leider funzt das nicht. Wo mache ich den Fehler?

    Mein Code (Betrifft tf:mail):

    Code:
    bt_insert.onRelease = function() {
    	
    	
    	if (tf_vorname.text != "" && tf_nachname.text != "" && tf_mail.text != "" && tf_adresse.text != "" && tf_plz.text != "" && tf_ort.text != ""&& tf_telefon.text != "") {
    	
    	if (tf_mail.indexOf("#") != -1 && tf_mail.indexOf(".") != -1)
    				//{tf_status = "gebe richtige mail an"}; 
    
    				
    				 
    				
    		senden = new LoadVars();
    		senden.gender = (tf_frau.selected) ? "Frau" : "Herr"; 
    		senden.gender = (tf_herr.selected) ? "Herr" : "Frau";
    		senden.prename = tf_vorname.text;
    		senden.name = tf_nachname.text;
    		senden.email = tf_mail.text;
    		senden.address = tf_adresse.text;
    		senden.zip = tf_plz.text;
    		senden.city = tf_ort.text;
    		senden.phone = tf_telefon.text;
    		empfang = new LoadVars();
    		rand = new Date().getTime();
    		senden.sendAndLoad("register.php", empfang, "POST");
    		empfang.onLoad = function(status) {
    			if (status) {
    				tf_vornname.borderColor = tf_nachname.borderColor=tf_mail.borderColor=tf_adresse.borderColor=tf_plz.borderColor=tf_ort.borderColor=tf_telefon.borderColor=0x000000;
    				tf_status = this.tf_status;
    				
    				if (empfang.signal == 2) {
    					tf_regname.text = "";
    					tf_regname.borderColor = 0xFF0000;
    				}
    				if (empfang.signal == 3) {
    					tf_vorname.text = tf_nachname.text=tf_mail.text=tf_adresse.text=tf_plz.text=tf_ort.text=tf_telefon.text=="";
    				}
    				
    				
    				
    			}
    			_root.formular.gotoAndPlay(21);
    			
    			
    		};
    	} else {
    		tf_status = "Bitte füllen Sie jedes Feld aus.";
    		if (tf_vornname.text == "") {
    			tf_vornname.borderColor = 0xFF0000;
    		} else {
    			tf_vorname.borderColor = 0x000000;
    		}
    		if (tf_nachname.text == "") {
    			tf_nachname.borderColor = 0xFF0000;
    		} else {
    			tf_nachname.borderColor = 0x000000;
    		}
    		if (tf_mail.text == "") {
    			tf_mail.borderColor = 0xFF0000;
    		} else {
    			tf_mail.borderColor = 0x000000;
    		}
    		
    		
    		if (tf_adresse.text == "") {
    			tf_adresse.borderColor = 0xFF0000;
    		} else {
    			tf_adresse.borderColor = 0x000000;
    		}
    		if (tf_plz.text == "") {
    			tf_plz.borderColor = 0xFF0000;
    		} else {
    			tf_plz.borderColor = 0x000000;
    		}
    		if (tf_ort.text == "") {
    			tf_ort.borderColor = 0xFF0000;
    		} else {
    			tf_ort.borderColor = 0x000000;
    		}
    		if (tf_telefon.text == "") {
    			tf_telefon.borderColor = 0xFF0000;
    		} else {
    			tf_telefon.borderColor = 0x000000;
    		}
    	}
    
    };
    Herzlichen Dank für euer Feedback...Gruss..tom
    Geändert von Tom (17.09.2009 um 19:03 Uhr)
    Im Nichtstun bleibt nichts ungetan - Laotse

+ Antworten

Ähnliche Themen

  1. Antworten: 0
    Letzter Beitrag: 05.07.2006, 16:18
  2. umlaute im javascript mail check
    Von amsl im Forum Javascript & Ajax
    Antworten: 3
    Letzter Beitrag: 10.08.2005, 20:26
  3. Antworten: 11
    Letzter Beitrag: 02.03.2005, 12:33
  4. mail mit Anhang abrufen und Norton Check
    Von Thomas im Forum Server & Provider
    Antworten: 6
    Letzter Beitrag: 10.06.2003, 21:56
  5. [php] mail() Befehl an mehrere mail-adressen Wie?
    Von hennash im Forum Traum-Dynamik
    Antworten: 7
    Letzter Beitrag: 07.04.2002, 14:38

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

     

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51