Using BeautifulSoup I extracted email links from a page. I am interested in how you could send an email to links that produce a pop up email form.
More simply put:
Is is it possible to send an email to the an address with only this data?
href = javascript:popUp('cfmail.cfm?LName=LastName&FName=FirstName')
Or if I follow the link in code is it possible to fill out the email form that it generates?
Thank you
No, it is not possible to extract an email with that information alone, unless you have access to the server and correct values for the variables
LastNameandFirstName. The linecfmail.cfm?LName=LastName&FName=FirstNameis getting a user’s email from the site’s server, presumably after the user is logged in.