Hello Friends,
Has anyone having any experience sending VCard V2.1/3.0/4.0 via SMS to
Android and IPhone Devices.
It works on Nokia but not on Android and IPhone.
Message is getting delivered but not getting shown by handset anywhere.
VCard which i have tried so far.
$text = "BEGIN:VCARD\r\n";
$text .= "VERSION:2.1\r\n";
$text .= "N:" . $lastname . ";" . $firstname . "\r\n";
$text .= "TEL;PREF:+" . $contactphone . "\r\n";
if ($contactemail != NULL && $contactemail != FALSE) {
$text .= "EMAIL: $contactemail \r\n";
}
$text .= "END:VCARD\r\n";
$text = "BEGIN:VCARD\r\n";
$text .= "VERSION:3.0\r\n";
$text .= "N:" . $lastname . ";" . $firstname . "\r\n";
$text .= "TEL;PREF:+" . $contactphone . "\r\n";
if ($contactemail != NULL && $contactemail != FALSE) {
$text .= "EMAIL: $contactemail \r\n";
}
$text .= "END:VCARD\r\n";
$text = "BEGIN:VCARD\r\n";
$text .= "VERSION:4.0\r\n";
$text .= "N:" . $lastname . ";" . $firstname . "\r\n";
$text .= "TEL;PREF:+" . $contactphone . "\r\n";
if ($contactemail != NULL && $contactemail != FALSE) {
$text .= "EMAIL: $contactemail \r\n";
}
$text .= "END:VCARD\r\n";
Thanks & Regards
Tapan Thapa