hi,

i am involved in job portal.For my project i use the job search module.By default,only registered users able to apply the job by use his resume.i made a some changes in this module.that is Anonymous user able to contact through job poster contact mail id.when Anonymous user click the apply button means system default program open.in this contact mail id field(cck email field) as to address and Node title as the subject.in this i successfully got the job title as a subject.but i am not able get the email id as the to address.here my code

function job_apply() {
global $user;
$job_nid = (int)arg(2);
$resume_nid = (int)arg(3);

if (!$user->uid) {

/*drupal_set_message(t('Apply using regitered resume means Please !login or rush your resume using Employer contact email id ',
array(
'!login' => l(t('login'), 'user/login'),
'!register' => l(t('register'), 'user/register')
)));*/

$node= node_load(array('nid' => $job_nid));

drupal_goto("mailto:vasan.85@gmail.com?Subject='$node->title'");
}
i am not able to get the cck email field.so plz any one give the idea to finish this work.

thanks advance